Class ConnectorContainer
- java.lang.Object
-
- com.sun.enterprise.connectors.module.ConnectorContainer
-
- All Implemented Interfaces:
Container,org.glassfish.hk2.api.PostConstruct,org.glassfish.hk2.api.PreDestroy
@Service(name="com.sun.enterprise.connectors.module.ConnectorContainer") public class ConnectorContainer extends Object implements Container, org.glassfish.hk2.api.PostConstruct, org.glassfish.hk2.api.PreDestroy
Represents the container for connector runtime module- Author:
- Jagadish Ramu
-
-
Constructor Summary
Constructors Constructor Description ConnectorContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Deployer>getDeployer()Returns the Deployer implementation capable of deploying applications to this container.StringgetName()Returns a human redeable name for this container, this name is not used for identifying the container but can be used to display messages belonging to the container.voidlogFine(String message)voidpostConstruct()voidpreDestroy()
-
-
-
Method Detail
-
postConstruct
public void postConstruct()
- Specified by:
postConstructin interfaceorg.glassfish.hk2.api.PostConstruct
-
preDestroy
public void preDestroy()
- Specified by:
preDestroyin interfaceorg.glassfish.hk2.api.PreDestroy
-
getDeployer
public Class<? extends Deployer> getDeployer()
Returns the Deployer implementation capable of deploying applications to this container.- Specified by:
getDeployerin interfaceContainer- Returns:
- the Deployer implementation
-
getName
public String getName()
Returns a human redeable name for this container, this name is not used for identifying the container but can be used to display messages belonging to the container.
-
logFine
public void logFine(String message)
-
-