Package org.apache.cxf.resource
Interface ResourceResolver
- All Known Implementing Classes:
BusApplicationContextResourceResolver
,ClassLoaderResolver
,ClasspathResolver
,ObjectTypeResolver
,PropertiesResolver
,SinglePropertyResolver
public interface ResourceResolver
Resolves resource. A ResourceResolver is used to find references
to resources that are being injected into classes
-
Method Summary
Modifier and TypeMethodDescriptiongetAsStream
(String name) Resolve a resource given its name and return an InputStream to it.<T> T
Resolve a resource given its name and type.
-
Method Details
-
resolve
Resolve a resource given its name and type.- Parameters:
resourceName
- name of the resource to resolve.resourceType
- type of the resource to resolve.- Returns:
- an instance of the resource or
null
if the resource cannot be resolved.
-
getAsStream
Resolve a resource given its name and return an InputStream to it.- Parameters:
name
- name of the resource to resolve.- Returns:
- an InputStream for the resource or null if it could not be found.
-