Package org.apache.cxf.bus.spring
Class BusApplicationContextResourceResolver
- java.lang.Object
- 
- org.apache.cxf.bus.spring.BusApplicationContextResourceResolver
 
- 
- All Implemented Interfaces:
- ResourceResolver,- org.springframework.beans.factory.Aware,- org.springframework.context.ApplicationContextAware
 
 public class BusApplicationContextResourceResolver extends Object implements ResourceResolver, org.springframework.context.ApplicationContextAware 
- 
- 
Constructor SummaryConstructors Constructor Description BusApplicationContextResourceResolver()BusApplicationContextResourceResolver(org.springframework.context.ApplicationContext c)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description InputStreamgetAsStream(String name)Resolve a resource given its name and return an InputStream to it.<T> Tresolve(String resourceName, Class<T> resourceType)Resolve a resource given its name and type.voidsetApplicationContext(org.springframework.context.ApplicationContext applicationContext)
 
- 
- 
- 
Method Detail- 
getAsStreampublic InputStream getAsStream(String name) Description copied from interface:ResourceResolverResolve a resource given its name and return an InputStream to it.- Specified by:
- getAsStreamin interface- ResourceResolver
- Parameters:
- name- name of the resource to resolve.
- Returns:
- an InputStream for the resource or null if it could not be found.
 
 - 
resolvepublic <T> T resolve(String resourceName, Class<T> resourceType) Description copied from interface:ResourceResolverResolve a resource given its name and type.- Specified by:
- resolvein interface- ResourceResolver
- Parameters:
- resourceName- name of the resource to resolve.
- resourceType- type of the resource to resolve.
- Returns:
- an instance of the resource or nullif the resource cannot be resolved.
 
 - 
setApplicationContextpublic void setApplicationContext(org.springframework.context.ApplicationContext applicationContext) - Specified by:
- setApplicationContextin interface- org.springframework.context.ApplicationContextAware
 
 
- 
 
-