Interface ContentTransformerFactory
public interface ContentTransformerFactory
Factory to create URL aware web resource transformers with Source Map.
- Since:
- v3.3
-
Method Summary
Modifier and TypeMethodDescriptionReturn the complete set of query parameters that this transformer could ever use.makeResourceTransformer(TransformerParameters parameters) Return the transformer for this transformmakeUrlBuilder(TransformerParameters parameters) Return the URL builder for this transform
-
Method Details
-
makeUrlBuilder
Return the URL builder for this transform- Parameters:
parameters- transformer parameters- Returns:
- an builder that contributes parameters to the URL
-
makeResourceTransformer
Return the transformer for this transform- Parameters:
parameters- transformer parameters- Returns:
- a transformer that reads values from the url and transforms a webresource
-
allUsedQueryParameters
Return the complete set of query parameters that this transformer could ever use.NOTE: Every query parameter is important to avoid cache positioning issues.
This should always return the same query parameters. A null will disable all optimisations and only this default implementation is allowed to return it.- Since:
- 7.0.1
-