Fields Summary |
---|
private static final long | serialVersionUID |
private ConnectorMetaData | cmdThe connector metadata |
private String | managedConnectionFactoryClassThe managed connection factory class |
private String | connectionFactoryInterfaceClassThe connection factory interface class |
private String | connectionFactoryImplementationClassThe connection factory implementation class |
private String | connectionInterfaceClassThe connection interface class |
private String | connectionImplementationClassThe connection implementation class |
Methods Summary |
---|
public java.lang.String | getConnectionFactoryImplementationClass()Get the connection factory implementation class
return connectionFactoryImplementationClass;
|
public java.lang.String | getConnectionFactoryInterfaceClass()Get the connection factory interface class
return connectionFactoryInterfaceClass;
|
public java.lang.String | getConnectionImplementationClass()Get the connection implementation class
return connectionImplementationClass;
|
public java.lang.String | getConnectionInterfaceClass()Get the connection interface class
return connectionInterfaceClass;
|
public ConnectorMetaData | getConnector()Get the connector
return cmd;
|
public java.lang.String | getManagedConnectionFactoryClass()Get the managed connection factory class
return managedConnectionFactoryClass;
|
public void | setConnectionFactoryImplementationClass(java.lang.String connectionFactoryImplementationClass)Set the connection factory implementation class
this.connectionFactoryImplementationClass = connectionFactoryImplementationClass;
|
public void | setConnectionFactoryInterfaceClass(java.lang.String connectionFactoryInterfaceClass)Set the connection factory interface class
this.connectionFactoryInterfaceClass = connectionFactoryInterfaceClass;
|
public void | setConnectionImplementationClass(java.lang.String connectionImplementationClass)Set the connection implementation class
this.connectionImplementationClass = connectionImplementationClass;
|
public void | setConnectionInterfaceClass(java.lang.String connectionInterfaceClass)Set the connection interface class
this.connectionInterfaceClass = connectionInterfaceClass;
|
public void | setManagedConnectionFactoryClass(java.lang.String managedConnectionFactoryClass)Set the managed connection factory class
this.managedConnectionFactoryClass = managedConnectionFactoryClass;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("ConnectionDefinitionMetaData").append('@");
buffer.append(Integer.toHexString(System.identityHashCode(this)));
buffer.append("[managedConnectionFactoryClass=").append(managedConnectionFactoryClass);
buffer.append(" connectionFactoryInterfaceClass=").append(connectionFactoryInterfaceClass);
buffer.append(" connectionFactoryImplementationClass=").append(connectionFactoryImplementationClass);
buffer.append(" connectionInterfaceClass=").append(connectionInterfaceClass);
buffer.append(" connectionImplementationClass=").append(connectionImplementationClass);
buffer.append(" properties=").append(getProperties());
buffer.append(']");
return buffer.toString();
|