| java.lang.Object org.apache.axis2.engine.DependencyManager
DependencyManager | public class DependencyManager (Code) | | If the service implementation has an init method with 1 or 2 message context as its parameters, then
the DependencyManager calls the init method with appropriate parameters.
|
SERVICE_DESTROY_METHOD | final public static String SERVICE_DESTROY_METHOD(Code) | | |
SERVICE_INIT_METHOD | final public static String SERVICE_INIT_METHOD(Code) | | |
destroyServiceObject | public static void destroyServiceObject(ServiceContext serviceContext)(Code) | | Notify a service object that it's on death row.
Parameters: serviceContext - the active ServiceContext |
initService | public static void initService(ServiceGroupContext serviceGroupContext) throws AxisFault(Code) | | To init all the services in application scope
Parameters: serviceGroupContext - the ServiceGroupContext from which to extract all the services throws: AxisFault - if there's a problem initializing |
initServiceClass | public static void initServiceClass(Object obj, ServiceContext serviceContext) throws AxisFault(Code) | | Initialize a new service object. Essentially, check to see if the object wants to receive
an init() call - if so, call it.
Parameters: obj - the service object Parameters: serviceContext - the active ServiceContext throws: AxisFault - if there's a problem initializing |
initServiceObject | public static void initServiceObject(Object obj, ServiceContext serviceContext) throws AxisFault(Code) | | Initialize a new service object. Essentially, check to see if the object wants to receive
an init() call - if so, call it.
Parameters: obj - the service object Parameters: serviceContext - the active ServiceContext throws: AxisFault - if there's a problem initializing |
|
|