Class MetroDeployer.MetroApplicationContainer
- java.lang.Object
-
- org.glassfish.webservices.metroglue.MetroDeployer.MetroApplicationContainer
-
- All Implemented Interfaces:
ApplicationContainer<Object>
- Enclosing class:
- MetroDeployer
public static final class MetroDeployer.MetroApplicationContainer extends Object implements ApplicationContainer<Object>
-
-
Constructor Summary
Constructors Constructor Description MetroApplicationContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassLoadergetClassLoader()Returns the class loader associated with this applicationObjectgetDescriptor()Returns the deployment descriptor associated with this applicationbooleanresume()Resumes this application container.booleanstart(ApplicationContext startupContxt)Starts an application container.booleanstop(ApplicationContext stopContext)booleansuspend()Suspends this application container.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.glassfish.api.deployment.ApplicationContainer
initialize, reload
-
-
-
-
Method Detail
-
getDescriptor
public Object getDescriptor()
Description copied from interface:ApplicationContainerReturns the deployment descriptor associated with this application- Specified by:
getDescriptorin interfaceApplicationContainer<Object>- Returns:
- deployment descriptor if they exist or null if not
-
start
public boolean start(ApplicationContext startupContxt)
Description copied from interface:ApplicationContainerStarts an application container. ContractProvider starting should not throw an exception but rather should use their prefered Logger instance to log any issue they encounter while starting. Returning false from a start mean that the container failed to start- Specified by:
startin interfaceApplicationContainer<Object>- Parameters:
startupContxt- the start up context- Returns:
- true if the container startup was successful.
-
stop
public boolean stop(ApplicationContext stopContext)
- Specified by:
stopin interfaceApplicationContainer<Object>
-
suspend
public boolean suspend()
Description copied from interface:ApplicationContainerSuspends this application container.- Specified by:
suspendin interfaceApplicationContainer<Object>- Returns:
- true if suspending was successful, false otherwise.
-
resume
public boolean resume()
Description copied from interface:ApplicationContainerResumes this application container.- Specified by:
resumein interfaceApplicationContainer<Object>- Returns:
- true if resumption was successful, false otherwise
-
getClassLoader
public ClassLoader getClassLoader()
Description copied from interface:ApplicationContainerReturns the class loader associated with this application- Specified by:
getClassLoaderin interfaceApplicationContainer<Object>- Returns:
- ClassLoader for this app
-
-