Methods Summary |
---|
public void | addConfigProperty(EnvironmentProperty configProperty)Add a configProperty to the set
this.configProperties.add(configProperty);
this.setDirty();
this.changed();
|
public void | changed()
super.changed();
|
public java.util.Set | getConfigProperties()Set of EnvironmentProperty
return configProperties;
|
public java.lang.String | getConnectionFactoryImpl()Get connection factory impl
return this.connectionfactoryImpl;
|
public java.lang.String | getConnectionFactoryIntf()Get connection factory intf
return this.connectionfactoryIntf;
|
public java.lang.String | getConnectionImpl()Get connection impl
return this.connectionImpl;
|
public java.lang.String | getConnectionIntf()Get connection intf
return this.connectionIntf;
|
public java.lang.String | getManagedConnectionFactoryImpl()Gets the value of ManagedconnectionFactoryImpl
return managedConnectionFactoryImpl;
|
public boolean | isDirty()
return this.isDirty;
|
public void | removeConfigProperty(EnvironmentProperty configProperty)Add a configProperty to the set
this.configProperties.remove(configProperty);
this.setDirty();
this.changed();
|
public void | setConnectionFactoryImpl(java.lang.String cf)set connection factory impl
this.connectionfactoryImpl = cf;
|
public void | setConnectionFactoryIntf(java.lang.String cf)set connection factory intf
this.connectionfactoryIntf = cf;
|
public void | setConnectionImpl(java.lang.String con)set connection intf
this.connectionImpl = con;
|
public void | setConnectionIntf(java.lang.String con)set connection intf
this.connectionIntf = con;
|
private void | setDirty()
this.isDirty = true;
|
public void | setManagedConnectionFactoryImpl(java.lang.String managedConnectionFactoryImpl)Sets the value of ManagedconnectionFactoryImpl
this.managedConnectionFactoryImpl = managedConnectionFactoryImpl;
this.setDirty();
this.changed();
|