Class ConnectorResourceDeployer
- java.lang.Object
-
- org.glassfish.resources.api.GlobalResourceDeployer
-
- com.sun.enterprise.resource.deployer.AbstractConnectorResourceDeployer
-
- com.sun.enterprise.resource.deployer.ConnectorResourceDeployer
-
- All Implemented Interfaces:
ResourceDeployer
@Service @Singleton public class ConnectorResourceDeployer extends AbstractConnectorResourceDeployer
- Author:
- Srikanth P
-
-
Constructor Summary
Constructors Constructor Description ConnectorResourceDeployer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeployResource(Object resource)Deploy the resource into the server's runtime naming contextvoiddeployResource(Object resource, String applicationName, String moduleName)Deploy the resource into the server's runtime naming context This API is used in cases where the "config" bean is not yet persisted in domain.xml and is part of the "config" transaction.voiddisableResource(Object resource)Disable the resource in the server's runtime naming contextvoidenableResource(Object resource)Enable the resource in the server's runtime naming contextClass[]getProxyClassesForDynamicReconfiguration()List of classes which need to be proxied for dynamic-reconfigurationbooleanhandles(Object resource)Indicates whether a particular resource deployer can handle the resource in questionvoidredeployResource(Object resource)Redeploy the resource into the server's runtime naming contextbooleansupportsDynamicReconfiguration()Indicates whether the resource deployer can handle transparent-dynamic-reconfiguration of resourcevoidundeployResource(Object resource)Undeploy the resource from the server's runtime naming contextvoidundeployResource(Object resource, String applicationName, String moduleName)Undeploy the resource from the server's runtime naming context-
Methods inherited from class com.sun.enterprise.resource.deployer.AbstractConnectorResourceDeployer
canDeploy, validatePreservedResource, validateResourcesForStaleReference
-
-
-
-
Method Detail
-
deployResource
public void deployResource(Object resource, String applicationName, String moduleName) throws Exception
Deploy the resource into the server's runtime naming context This API is used in cases where the "config" bean is not yet persisted in domain.xml and is part of the "config" transaction.- Parameters:
resource- a resource object (eg. JmsResource)applicationName- application-namemoduleName- module-name- Throws:
Exception- thrown if fail
-
deployResource
public void deployResource(Object resource) throws Exception
Deploy the resource into the server's runtime naming context- Parameters:
resource- a resource object (eg. JmsResource)- Throws:
Exception- thrown if fail
-
undeployResource
public void undeployResource(Object resource, String applicationName, String moduleName) throws Exception
Undeploy the resource from the server's runtime naming context- Parameters:
resource- a resource object (eg. JmsResource)applicationName- application-namemoduleName- module-name- Throws:
Exception- thrown if fail
-
undeployResource
public void undeployResource(Object resource) throws Exception
Undeploy the resource from the server's runtime naming context- Parameters:
resource- a resource object (eg. JmsResource)- Throws:
Exception- thrown if fail
-
redeployResource
public void redeployResource(Object resource) throws Exception
Redeploy the resource into the server's runtime naming context- Parameters:
resource- a resource object- Throws:
Exception- thrown if fail
-
disableResource
public void disableResource(Object resource) throws Exception
Disable the resource in the server's runtime naming context- Parameters:
resource- a resource object (eg. JmsResource)- Throws:
Exception- thrown if fail
-
enableResource
public void enableResource(Object resource) throws Exception
Enable the resource in the server's runtime naming context- Parameters:
resource- a resource object (eg. JmsResource)- Throws:
Exception- thrown if fail
-
handles
public boolean handles(Object resource)
Indicates whether a particular resource deployer can handle the resource in question- Parameters:
resource- resource that need to be handled- Returns:
- boolean
-
supportsDynamicReconfiguration
public boolean supportsDynamicReconfiguration()
Description copied from interface:ResourceDeployerIndicates whether the resource deployer can handle transparent-dynamic-reconfiguration of resource- Returns:
- boolean indicating whether transparent-dynamic-reconfiguration is supported.
-
getProxyClassesForDynamicReconfiguration
public Class[] getProxyClassesForDynamicReconfiguration()
Description copied from interface:ResourceDeployerList of classes which need to be proxied for dynamic-reconfiguration- Returns:
- list of classes
-
-