Interface AbstractImageSessionContext.FallbackResolver
-
- All Known Implementing Classes:
AbstractImageSessionContext.RestrictedFallbackResolver,AbstractImageSessionContext.UnrestrictedFallbackResolver
- Enclosing class:
- AbstractImageSessionContext
public static interface AbstractImageSessionContext.FallbackResolverImplementations of this interface will be used as the mechanism for creating theSourcethat wraps resources. This interface allows clients to define their own implementations so that they have fine-grained control over how resources are acquired.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.xml.transform.SourcecreateSource(javax.xml.transform.Source source, java.lang.String uri)The fallback mechanism used to create the source which takes in both theSourcethat the the regular mechanisms attempted to create and the URI that the user provided.
-
-
-
Method Detail
-
createSource
javax.xml.transform.Source createSource(javax.xml.transform.Source source, java.lang.String uri)The fallback mechanism used to create the source which takes in both theSourcethat the the regular mechanisms attempted to create and the URI that the user provided.- Parameters:
source- the sourceuri- the URI provided by the user- Returns:
- the source that the contingency mechanism has been acquired
-
-