| Method from org.jboss.resource.RARMetaData Detail: |
public String getAuthMechType() {
return authMechType;
}
Gets the AuthMechType attribute of the RARMetaData object |
public ClassLoader getClassLoader() {
return classLoader;
}
The class loader to use for the resource adapter's classes |
public String getDisplayName() {
return displayName;
}
Gets the DisplayName attribute of the RARMetaData object |
public String getManagedConnectionFactoryClass() {
return managedConnectionFactoryClass;
}
Gets the ManagedConnectionFactoryClass attribute of the RARMetaData
object |
public Map getProperties() {
return properties;
}
Gets the Properties attribute of the RARMetaData object |
public String getPropertyType(String name) {
Property prop = (Property)properties.get(name);
return (prop == null) ? null : prop.type;
}
Gets the PropertyType attribute of the RARMetaData object |
public boolean getReauthenticationSupport() {
return reauthenticationSupport;
}
Gets the ReauthenticationSupport attribute of the RARMetaData object |
public Element getResourceAdapterElement() {
return resourceAdapterElement;
}
|
public int getTransactionSupport() {
return transactionSupport;
}
Gets the type of transactions supported by the resource adapter. |
public void importXml(Element root) throws DeploymentException {
// First, a quick sanity check to ensure that we're looking at
// the right kind of deployment descriptor
String rootTag = root.getTagName();
if (!rootTag.equals("connector"))
{
throw new DeploymentException("Not a resource adapter deployment " +
"descriptor because its root tag, '" +
rootTag + "', is not 'connector'");
}
// Then, we iterate over all the elements seeing if we're
// interested
invokeChildren(root);
}
#Description of the Method |
public void setClassLoader(ClassLoader cl) {
classLoader = cl;
}
Sets the ClassLoader attribute of the RARMetaData object |