ResourceTransformer.java 1.4 KB
Newer Older
1
/*
2
 * Copyright 2002-2016 the original author or authors.
3 4 5 6 7
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9 10 11 12 13 14 15 16
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

17
package org.springframework.web.servlet.resource;
18 19

import java.io.IOException;
20 21 22
import javax.servlet.http.HttpServletRequest;

import org.springframework.core.io.Resource;
23 24 25 26 27 28 29 30

/**
 * An abstraction for transforming the content of a resource.
 *
 * @author Jeremy Grelle
 * @author Rossen Stoyanchev
 * @since 4.1
 */
31
@FunctionalInterface
32 33 34 35 36 37 38
public interface ResourceTransformer {

	/**
	 * Transform the given resource.
	 * @param request the current request
	 * @param resource the resource to transform
	 * @param transformerChain the chain of remaining transformers to delegate to
J
Juergen Hoeller 已提交
39
	 * @return the transformed resource (never {@code null})
40 41 42 43 44
	 * @throws IOException if the transformation fails
	 */
	Resource transform(HttpServletRequest request, Resource resource, ResourceTransformerChain transformerChain)
			throws IOException;

J
Juergen Hoeller 已提交
45
}