RARDeploymentpublic class RARDeployment extends org.jboss.system.ServiceDynamicMBeanSupport implements javax.resource.spi.BootstrapContextA resource adapter deployment |
Fields Summary |
---|
protected org.jboss.deployment.DeploymentInfo | diThe deployment info | protected RARDeployer | deployerOur deployer | protected org.jboss.resource.metadata.ConnectorMetaData | cmdThe meta data | protected javax.resource.spi.ResourceAdapter | resourceAdapterThe resource adapter |
Constructors Summary |
---|
public RARDeployment(org.jboss.deployment.DeploymentInfo di)Create a new RAR deployment
this.di = di;
this.deployer = (RARDeployer) di.deployer;
this.cmd = (ConnectorMetaData) di.metaData;
|
Methods Summary |
---|
protected javax.resource.spi.ActivationSpec | createActivationSpec(java.lang.Class messagingType, java.util.Collection activationConfig)
boolean trace = log.isTraceEnabled();
if (trace)
log.trace("CreateActivateSpec rar=" + getServiceName() + " messagingType=" + messagingType.getName() + " activationConfig=" + activationConfig);
try
{
// Find the meta data
MessageListenerMetaData mlmd = cmd.getMessageListener(messagingType.getName());
if (mlmd == null)
throw new DeploymentException("MessagingType '" + messagingType.getName() + "' not found in resource deployment " + getServiceName());
return ActivationSpecFactory.createActivationSpec(getServiceName(), messagingType.getName(), activationConfig, mlmd);
}
catch (Exception e)
{
throw new MBeanException(e, "Error in create activation spec " + getServiceName());
}
| public java.util.Timer | createTimer()
return new Timer(true);
| protected void | endpointActivation(javax.resource.spi.endpoint.MessageEndpointFactory messageEndpointFactory, javax.resource.spi.ActivationSpec activationSpec)
boolean trace = log.isTraceEnabled();
if (trace)
log.trace("EndpointActivation rar=" + getServiceName() + " messagingEndpointFactory=" + messageEndpointFactory + " activationSpec=" + activationSpec);
try
{
activationSpec.setResourceAdapter(resourceAdapter);
resourceAdapter.endpointActivation(messageEndpointFactory, activationSpec);
}
catch (Exception e)
{
throw new MBeanException(e, "Error in endpoint activation " + getServiceName());
}
| protected void | endpointDeactivation(javax.resource.spi.endpoint.MessageEndpointFactory messageEndpointFactory, javax.resource.spi.ActivationSpec activationSpec)
boolean trace = log.isTraceEnabled();
if (trace)
log.trace("EndpointDeactivation rar=" + getServiceName() + " messagingEndpointFactory=" + messageEndpointFactory + " activationSpec=" + activationSpec);
try
{
resourceAdapter.endpointDeactivation(messageEndpointFactory, activationSpec);
}
catch (Exception e)
{
throw new MBeanException(e, "Error in endpoint deactivation " + getServiceName());
}
| protected java.lang.Object | getInternalAttribute(java.lang.String attribute)
if ("MetaData".equals(attribute))
return cmd;
else if ("AuthenticationMechanism".equals(attribute))
return cmd.getAuthenticationMechanism().getAuthenticationMechansimType();
else if ("EISType".equals(attribute))
return cmd.getEISType();
else if ("License".equals(attribute))
return cmd.getLicense().getDescription().getDescription();
else if ("RAClass".equals(attribute))
return cmd.getRAClass();
else if ("RAVersion".equals(attribute))
return cmd.getRAVersion();
else if ("TransactionSupport".equals(attribute))
return cmd.getTransactionSupport();
else if ("VendorName".equals(attribute))
return cmd.getVendorName();
else if ("Version".equals(attribute))
return cmd.getVersion();
else if ("ReauthenticationSupport".equals(attribute))
return new Boolean(cmd.getReauthenticationSupport());
else if ("ResourceAdapter".equals(attribute))
return resourceAdapter;
Object property = cmd.getProperty(attribute);
if (property != null)
return property;
return super.getInternalAttribute(attribute);
| protected javax.management.MBeanAttributeInfo[] | getInternalAttributeInfo()
Collection properties = cmd.getProperties();
MBeanAttributeInfo[] attrs = new MBeanAttributeInfo[11+properties.size()];
attrs[0] = new MBeanAttributeInfo("MetaData", ConnectorMetaData.class.getName(), "The meta data", true, false, false);
attrs[1] = new MBeanAttributeInfo("AuthenticationMechanism", String.class.getName(), "The authentication mechanism", true, false, false);
attrs[2] = new MBeanAttributeInfo("EISType", String.class.getName(), "The EIS type", true, false, false);
attrs[3] = new MBeanAttributeInfo("License", String.class.getName(), "The license", true, false, false);
attrs[4] = new MBeanAttributeInfo("RAClass", String.class.getName(), "The resource adapter class", true, false, false);
attrs[5] = new MBeanAttributeInfo("RAVersion", String.class.getName(), "The resource adapter version", true, false, false);
attrs[6] = new MBeanAttributeInfo("TransactionSupport", String.class.getName(), "The transaction support", true, false, false);
attrs[7] = new MBeanAttributeInfo("VendorName", String.class.getName(), "The vendor name", true, false, false);
attrs[8] = new MBeanAttributeInfo("Version", String.class.getName(), "The spec version", true, false, false);
attrs[9] = new MBeanAttributeInfo("ReauthenticationSupport", Boolean.TYPE.getName(), "Whether reauthentication support is supported", true, false, false);
attrs[10] = new MBeanAttributeInfo("ResourceAdapter", ResourceAdapter.class.getName(), "The resource adapter instance", true, false, false);
int n = 11;
for (Iterator i = properties.iterator(); i.hasNext();)
{
ConfigPropertyMetaData cpmd = (ConfigPropertyMetaData) i.next();
attrs[n++] = new MBeanAttributeInfo(cpmd.getName(), cpmd.getType(), cpmd.getDescription().getDescription(), true, false, false);
}
return attrs;
| protected java.lang.String | getInternalDescription()
String description = null;
DescriptionGroupMetaData dgmd = cmd.getDescription();
if (dgmd != null)
description = dgmd.getDescription();
if (description == null)
description = "RAR Deployment " + di.url;
return description;
| protected javax.management.MBeanOperationInfo[] | getInternalOperationInfo()
MBeanOperationInfo[] ops = new MBeanOperationInfo[3];
MBeanParameterInfo[] createActivationSpecParams = new MBeanParameterInfo[]
{
new MBeanParameterInfo("MessagingType", Class.class.getName(), "The type of the message listener"),
new MBeanParameterInfo("ActivationConfig", Collection.class.getName(), "A collection of activation config properties")
};
ops[0] = new MBeanOperationInfo("createActivationSpec", "Create an activation spec",
createActivationSpecParams, ActivationSpec.class.getName(), MBeanOperationInfo.ACTION);
MBeanParameterInfo[] activationParams = new MBeanParameterInfo[]
{
new MBeanParameterInfo("MessageEndpointFactory", MessageEndpointFactory.class.getName(), "The message endpoint factory"),
new MBeanParameterInfo("ActivationSpec", ActivationSpec.class.getName(), "The activation spec")
};
ops[1] = new MBeanOperationInfo("endpointActivation", "Active the endpoint",
activationParams, Void.class.getName(), MBeanOperationInfo.ACTION);
ops[2] = new MBeanOperationInfo("endpointDeactivation", "Deactive the endpoint",
activationParams, Void.class.getName(), MBeanOperationInfo.ACTION);
return ops;
| public javax.resource.spi.work.WorkManager | getWorkManager()
return deployer.workManager;
| public javax.resource.spi.XATerminator | getXATerminator()
return deployer.xaTerminator;
| protected java.lang.Object | internalInvoke(java.lang.String actionName, java.lang.Object[] params, java.lang.String[] signature)
if ("createActivationSpec".equals(actionName))
{
if (params.length != 2)
throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
Class messagingType = (Class) params[0];
Collection activationConfig = (Collection) params[1];
return createActivationSpec(messagingType, activationConfig);
}
else if ("endpointActivation".equals(actionName))
{
if (params.length != 2)
throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
MessageEndpointFactory messageEndpointFactory = (MessageEndpointFactory) params[0];
ActivationSpec activationSpec = (ActivationSpec) params[1];
endpointActivation(messageEndpointFactory, activationSpec);
return null;
}
else if ("endpointDeactivation".equals(actionName))
{
if (params.length != 2)
throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
MessageEndpointFactory messageEndpointFactory = (MessageEndpointFactory) params[0];
ActivationSpec activationSpec = (ActivationSpec) params[1];
endpointDeactivation(messageEndpointFactory, activationSpec);
return null;
}
return super.internalInvoke(actionName, params, signature);
| protected void | startService()
if (cmd.getLicense().getRequired())
{
log.info ("Required license terms exist, view META-INF/ra.xml in " + ServerConfigUtil.shortUrlFromServerHome(di.url.toString()));
log.debug("License terms full URL: " + di.url);
}
resourceAdapter = ResourceAdapterFactory.createResourceAdapter(cmd);
resourceAdapter.start(this);
| protected void | stopService()
resourceAdapter.stop();
|
|