Interface ResourceInjectionServiceRuntimeDescription
-
- All Superinterfaces:
ServiceRuntimeDescription
- All Known Implementing Classes:
ResourceInjectionServiceRuntimeDescriptionImpl
public interface ResourceInjectionServiceRuntimeDescription extends ServiceRuntimeDescription
Used to cache @Resource injection information
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Method
getPostConstructMethod()
Method
getPreDestroyMethod()
boolean
hasResourceAnnotation()
-
Methods inherited from interface org.apache.axis2.jaxws.description.ServiceRuntimeDescription
getKey, getServiceDescription
-
-
-
-
Method Detail
-
hasResourceAnnotation
boolean hasResourceAnnotation()
- Returns:
- true if @Resource is found on any Field or Method of the Implementation class
-
getPostConstructMethod
Method getPostConstructMethod()
- Returns:
- Method with @PostConstruct or null
-
getPreDestroyMethod
Method getPreDestroyMethod()
- Returns:
- Method with @PreDestroy or null
-
-