|
Enterprise Information Portal APIs |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.ibm.mm.beans.CMBConnection
The CMBConnection bean provides EIP federated database as well as a specific Content Server connection management functions. This bean is required in order to use any of the EIP JavaBeans. Most of the EIP JavaBeans have a connection property that should be set to a single instance of this bean for the session.
By default, this bean also provides schema management, data management, and workflow functionality. To disable it/them, set the schema, data, and workflow management enabled options to false. When these options are set enabled, the schema, data, and workflow management beans automatically delegate the Trace and Exception events to this Connection bean. This together provides users with transparent error and trace capability from the child beans.
Summary of properties and events:
imported properties server name, server port, user id, password, and new password; will veto if connection is made trace option, defaulting off, will not veto exported properties none standalone properties is server local (to the application), schema management enabled, data management enabled both defaulting true workflow data management enabled, default true interested in events CMBConnectionRequestEvent - to service the requests VetoableChangeEvent - to import property values source of events CMBConnectionReplyEvent - to reply the request CMBExceptionEvent - to post exception CMBTraceEvent - to let logger trace
The general EIP JavaBeans design principles for posting exception events versus throwing exceptions are:
Constructor Summary | |
CMBConnection()
Constructs a new instance of connection bean |
Method Summary | |
void |
addCMBConnectionReplyListener(CMBConnectionReplyListener aListener)
Adds a new CMBConnectionReplyListener object to listener list |
void |
addCMBExceptionListener(CMBExceptionListener listener)
CMBExceptionEvent registration method. |
void |
addCMBTraceListener(CMBTraceListener listener)
CMBTraceEvent registration method. |
void |
cancelConnection()
Deprecated. This method is deprecated since it has no implementation for any supported server. |
void |
changePassword()
Changes password |
void |
changePassword(java.lang.String newPasswd)
Change the password |
void |
commit()
transaction support |
void |
connect()
Logon to server with current settings |
void |
connect(java.lang.String server,
int portNo,
int servicePortNo,
java.lang.String userid,
java.lang.String passwd,
java.lang.String newPasswd)
Logon on the server |
void |
connect(java.lang.String server,
int portNo,
java.lang.String userid,
java.lang.String passwd,
java.lang.String newPasswd)
Logon on the server |
void |
connectWithCredential(java.lang.String serverName,
CMBAuthenticationData cred,
java.lang.String connString)
Logon on the server, using the single sign-on credential |
void |
disconnect()
Disconnect(): Logging off |
void |
finalize()
Disconnect if not already disconnected. |
java.lang.String |
getCC2MimeURL()
Deprecated. Use getConfigString() |
java.lang.String |
getConfigString()
Gets the current configuration string to be used in the datastore constructor. |
CMBConnectionReplyEvent |
getConnectionReplyEvent()
To support VisualCafe 3.0 "Add Interaction..." |
short |
getConnectionType()
Gets the current connection type |
java.lang.String |
getConnectString()
Gets the current connection string |
boolean |
getConnectToIKF()
Returns the connectToIKF property value. |
boolean |
getConnectToWorkFlow()
Returns the connectToWorkFlow property value. |
protected java.lang.String |
getCorrectURLString(java.lang.String urlString)
|
CMBDataManagement |
getDataManagement()
Gets the reference to the CMBDataManagement bean |
com.ibm.mm.sdk.common.dkDatastore |
getDatastore()
Gets the datastore used by this bean. |
CMBDocRoutingDataManagementICM |
getDocRoutingDataManagementICM()
Gets the reference to the CMBDocRoutingDataManagementICM bean |
CMBDocRoutingQueryServiceICM |
getDocRoutingQueryServiceICM()
Gets the reference to the CMBDocRoutingQueryServiceICM bean |
java.lang.String |
getDsType()
Gets the dsType property |
CMBExceptionEvent |
getExceptionEvent()
To support VisualCafe 3.0 "Add Interaction..." |
com.ibm.mm.sdk.common.DKIKFService |
getIKFService()
Get the information mining service. |
java.lang.String[] |
getMimeTypes()
get allowed mime types server ICM and DL |
java.lang.String |
getNewPassword()
Gets the new password |
CMBObjectManagement |
getObjectManagement()
Gets the reference to the CMBObjectManagement bean |
java.lang.String |
getPassword()
Gets the password |
int |
getPortNumber()
Gets the port number of the server |
CMBQueryService |
getQueryService()
Gets the reference to the CMBQueryService bean |
java.lang.String |
getRMIHostname()
Gets the RMI hostname of the server |
CMBSchemaManagement |
getSchemaManagement()
Gets the reference to the CMBSchemaManagement bean |
java.lang.String |
getServerName()
Gets the name of the Content server |
short |
getServiceConnectionType()
Gets the current service connection type |
int |
getServicePortNumber()
Gets the port number of the service |
java.lang.String |
getServiceRMIHostname()
Gets the RMI hostname of the service |
int |
getSessionId()
Useful only when this connection is created from a connection pool. |
CMBTraceEvent |
getTraceEvent()
To support VisualCafe 3.0 "Add Interaction..." |
java.lang.String |
getUserid()
Gets the userid |
CMBUserManagement |
getUserManagement()
Gets the reference to the CMBUserManagement bean |
CMBWorkFlowDataManagement |
getWorkFlowDataManagement()
Gets the reference to the CMBWorkFlowDataManagement bean |
CMBWorkFlowQueryService |
getWorkFlowQueryService()
Gets the reference to the CMBWorkFlowQueryService bean |
com.ibm.mm.sdk.common.dkWorkFlowServiceFed |
getWorkFlowServiceFed()
Gets the reference to mqswf service |
boolean |
isConnected()
Checks to see if we are currently connected. |
boolean |
isConnectedWorkFlow()
Checks to see if we are currently connected to workflow service. |
boolean |
isDataManagementEnabled()
Deprecated. Always returns true. Using getDataManagement will always return an instance of CMBDataManagement, although that instance will not be created until it is first needed. |
boolean |
isIKFServiceAvailable()
Checks to see if the application has information mining installed. |
boolean |
isSchemaManagementEnabled()
Deprecated. Always returns true. A call to getSchemaManagement will always return an instance of CMBSchemaManagement, although that instance will not be created until it is first needed. |
boolean |
isSSO()
check if Server is Single Sign On. |
boolean |
isTraceEnabled()
Checks to see if trace is enabled |
boolean |
isVersioningEnabled()
Checks to see if this datastore has versioning function. |
boolean |
isWFServiceAvailable()
Checks to see if the application has Workflow installed. |
boolean |
isWorkflowDataManagementEnabled()
Checks to see if this bean has CMBWorkFlowDataManagement function. |
boolean |
isWorkflowQueryServiceEnabled()
Checks to see if this bean has WorkFlowQueryService function |
java.lang.String[] |
listDataSources()
Return an array of names of all available servers. |
void |
onCMBConnectionRequest(CMBConnectionRequestEvent evt)
This method is from CMBConnectionRequestListener interface. |
void |
removeCMBConnectionReplyListener(CMBConnectionReplyListener aListener)
ConnectionReplyEvent unregistration method. |
void |
removeCMBExceptionListener(CMBExceptionListener listener)
CMBExceptionEvent unregistration method. |
void |
removeCMBTraceListener(CMBTraceListener listener)
CMBTraceEvent unregistration method. |
void |
requestConnection(java.lang.String serverName,
java.lang.String uid,
java.lang.String passwd,
java.lang.String newPasswd,
java.lang.String connectString)
Requests a connection on a specified back-end server |
void |
rollback()
transaction support |
void |
setCC2MimeURL(java.lang.String urlString)
Deprecated. Use setConfigString("CC2MIMEURL=(urlstring)") instead |
void |
setConfigString(java.lang.String configString)
Sets the current config string to be used in the datastore constructor. |
void |
setConnectionType(short connType)
Sets connection type to local or remote |
void |
setConnectionType(short connType,
java.lang.String urlString)
Sets connection type to local or remote |
void |
setConnectionType(short connType,
java.lang.String clientURLString,
java.lang.String csURLString)
Sets connection type to local or remote |
void |
setConnectionType(short connType,
java.net.URL clientURLObj)
Sets connection type to local, remote, or dynamic. |
void |
setConnectionType(short connType,
java.net.URL clientURLObj,
java.net.URL csURLObj)
Sets connection type to local, remote, or dynamic. |
void |
setConnectString(java.lang.String connectString)
Sets the current connection string. |
void |
setConnectToIKF(boolean newvalue)
Sets the connectToIKF property value. |
void |
setConnectToWorkFlow(boolean newvalue)
Sets the connectToWorkFlow property value. |
void |
setDataManagementEnabled(boolean newvalue)
Deprecated. New value will be ignored. Using getDataManagement will always return an instance of CMBDataManagement, although that instance will not be created until it is first needed. |
void |
setDsType(java.lang.String dsType)
Sets the dsType property |
void |
setNewPassword(java.lang.String newPasswd)
Sets new password |
void |
setPassword(java.lang.String passwd)
Sets the password |
void |
setPortNumber(int portNo)
Sets the port number of the RMI server |
void |
setRMIHostname(java.lang.String hostname)
Sets the RMI hostname of the server |
void |
setSchemaManagementEnabled(boolean newvalue)
Deprecated. Ignored. A call to getSchemaManagement will always return an instance of CMBSchemaManagement, although that instance will not be created until it is first needed. |
void |
setServerName(java.lang.String serverName)
Sets the name of the Content server |
void |
setServiceConnectionType(short connType)
Sets connection type to local or remote |
void |
setServiceConnectionType(short connType,
java.lang.String urlString)
Sets connection type to local or remote |
void |
setServiceConnectionType(short connType,
java.lang.String clientURLString,
java.lang.String csURLString)
Sets connection type to local or remote |
void |
setServiceConnectionType(short connType,
java.net.URL clientURLObj)
Sets connection type to local, remote, or dynamic. |
void |
setServiceConnectionType(short connType,
java.net.URL clientURLObj,
java.net.URL csURLObj)
Sets connection type to local, remote, or dynamic. |
void |
setServicePortNumber(int portNo)
Sets the service port number of the service |
void |
setServiceRMIHostname(java.lang.String hostname)
Sets the RMI hostname of the service |
void |
setTraceEnabled(boolean enabled)
Enables or disables tracing on the bean |
void |
setUserid(java.lang.String userid)
Sets the userid |
void |
setWorkflowDataManagementEnabled(boolean newvalue)
Sets the WorkflowDataManagementEnabled property. |
void |
startTransaction()
transaction support |
java.lang.String |
toString()
Return a meaningful string representation of the bean |
void |
vetoableChange(java.beans.PropertyChangeEvent evt)
Check if property allows to be changed. |
Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public CMBConnection()
Method Detail |
public boolean isTraceEnabled()
public void setTraceEnabled(boolean enabled)
enabled
- enables tracing if true, disables if false.public short getServiceConnectionType()
CMBBaseConstant
public java.lang.String getConnectString()
public void setConnectString(java.lang.String connectString)
Note: For connecting directly to a server that requires a specific port, set the port number as part of the connection string; for example, to connect to an OnDemand for OS/390 server:
connBean.setConnectString("ODPORT=3909");
connectString
- The connection stringpublic java.lang.String getConfigString()
public void setConfigString(java.lang.String configString)
configString
- The configuration stringpublic int getSessionId()
public short getConnectionType()
CMBBaseConstant
public void setConnectionType(short connType) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException
When performing federated actions, CMBConnection always uses cmbcs.ini to determine what package to use, no matter what the setting of connType is.
connType
- one of the following values:
java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidpublic void setServiceConnectionType(short connType) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException
connType
- one of the following values:
java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidpublic void setServiceConnectionType(short connType, java.net.URL clientURLObj) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException
connType
- one of the following values:
clientURLObj
- URL object reference for the cmbsvclient.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidpublic void setServiceConnectionType(short connType, java.lang.String urlString) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, java.net.MalformedURLException
connType
- one of the following values:
clientURLString
- URL string for the cmbsvclient.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidjava.net.MalformedURLException
- if the URL string is not valid.public void setConnectionType(short connType, java.net.URL clientURLObj) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException
When performing federated actions, CMBConnection always uses cmbcs.ini to determine what package to use, no matter what the setting of connType is.
connType
- one of the following values:
clientURLObj
- URL object reference for the cmbclient.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidpublic void setConnectionType(short connType, java.lang.String urlString) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, java.net.MalformedURLException
When performing federated actions, CMBConnection always uses cmbcs.ini to determine what package to use, no matter what the setting of connType is.
connType
- one of the following values:
clientURLString
- URL string for the cmbclient.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidjava.net.MalformedURLException
- if the URL string is not valid.public void setConnectionType(short connType, java.net.URL clientURLObj, java.net.URL csURLObj) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException
When performing federated actions, CMBConnection always uses cmbcs.ini to determine what package to use, no matter what the setting of connType is.
connType
- one of the following values:
clientURLObj
- URL object reference for the cmbclient.ini file.csURLObj
- URL object reference for the cmbcs.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidpublic void setServiceConnectionType(short connType, java.net.URL clientURLObj, java.net.URL csURLObj) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException
When performing federated actions, CMBConnection always uses cmbcs.ini to determine what package to use, no matter what the setting of connType is.
connType
- one of the following values:
clientURLObj
- URL object reference for the cmbsvclient.ini file.csURLObj
- URL object reference for the cmbsvcs.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidpublic void setConnectionType(short connType, java.lang.String clientURLString, java.lang.String csURLString) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, java.net.MalformedURLException
When performing federated actions, CMBConnection always uses cmbcs.ini to determine what package to use, no matter what the setting of connType is.
connType
- one of the following values:
clientURLString
- URL string for the cmbclient.ini file.csURLString
- ULR string for the cmbcs.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidjava.net.MalformedURLException
- if the URL string is not valid.public void setServiceConnectionType(short connType, java.lang.String clientURLString, java.lang.String csURLString) throws java.beans.PropertyVetoException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, java.net.MalformedURLException
connType
- one of the following values:
clientURLString
- URL string for the cmbsvclient.ini file.csURLString
- ULR string for the cmbsvcs.ini file.java.beans.PropertyVetoException
- if the connection has already been made.java.lang.IllegalArgumentException
- if connection type is invalidjava.net.MalformedURLException
- if the URL string is not valid.public void setCC2MimeURL(java.lang.String urlString) throws java.net.MalformedURLException
urlString
- cmbcc2mime.ini URL location.java.net.MalformedURLException
- if the URL string is invalid.public java.lang.String getCC2MimeURL()
public java.lang.String getServerName()
public void setServerName(java.lang.String serverName) throws java.beans.PropertyVetoException
serverName
- name of the serverjava.beans.PropertyVetoException
- if property value is not validpublic java.lang.String getUserid()
public void setUserid(java.lang.String userid) throws java.beans.PropertyVetoException
userid
- new useridjava.beans.PropertyVetoException
- if property value is not validpublic java.lang.String getPassword()
public void setPassword(java.lang.String passwd) throws java.beans.PropertyVetoException
passwd
- passwordjava.beans.PropertyVetoException
- if property value is not validpublic java.lang.String getNewPassword()
public void setNewPassword(java.lang.String newPasswd) throws java.beans.PropertyVetoException
newPasswd
- new passwordjava.beans.PropertyVetoException
- if property value is not validpublic java.lang.String getRMIHostname()
public void setRMIHostname(java.lang.String hostname) throws java.beans.PropertyVetoException
hostname
- RMI hostnamejava.beans.PropertyVetoException
- if property value is not validpublic java.lang.String getServiceRMIHostname()
public void setServiceRMIHostname(java.lang.String hostname) throws java.beans.PropertyVetoException
hostname
- RMI hostname of the servicejava.beans.PropertyVetoException
- if property value is not validpublic int getServicePortNumber()
public int getPortNumber()
public void setPortNumber(int portNo) throws java.beans.PropertyVetoException
Note: For a direct connection to a server, specify the port number as part of the connection string. Use the setConnectString() method to set the connection string.
portNo
- new port numberjava.beans.PropertyVetoException
- if property value is not validpublic void setServicePortNumber(int portNo) throws java.beans.PropertyVetoException
portNo
- new service port numberjava.beans.PropertyVetoException
- if property value is not validpublic boolean isSchemaManagementEnabled()
public void setSchemaManagementEnabled(boolean newvalue)
schemaOn
- if true then this bean has CMBSchemaManagement bean,
if false, it will notpublic boolean isDataManagementEnabled()
public void setDataManagementEnabled(boolean newvalue)
dataOn
- if true then this bean has CMBDataManagement bean,
if false, it will notpublic boolean isVersioningEnabled()
- the entity function which describes the versioning
control mode selected for the entity.
public void setConnectToWorkFlow(boolean newvalue)
newvalue
- if false the connect method will not attempt a connection
to the workflow server. The default value is true.public boolean getConnectToWorkFlow()
CMBConnection.setConnectToWorkFlow(boolean)
,
CMBConnection.connect()
public void setConnectToIKF(boolean newvalue)
newvalue
- the value fo the propertypublic boolean getConnectToIKF()
public boolean isWorkflowQueryServiceEnabled()
public void setWorkflowDataManagementEnabled(boolean newvalue)
newValue
- if true then this bean has an instance of the
CMBWorkFlowDataManagement bean, if false, it will not.public boolean isWorkflowDataManagementEnabled()
public java.lang.String getDsType()
public void setDsType(java.lang.String dsType) throws java.beans.PropertyVetoException, java.lang.IllegalArgumentException
java.beans.PropertyVetoException
- if connection is already established.java.lang.IllegalArgumentException
- if dsType is not validpublic java.lang.String[] listDataSources() throws java.lang.Exception
public void connect() throws CMBConnectFailedException, CMBException
CMBConnectFailedException
- if
CMBException
- if error occurred in the server while logging on.
Call CMBException.getErrorData() to get the original exception object.public final boolean isSSO()
public boolean isWFServiceAvailable() throws com.ibm.mm.sdk.common.DKException, java.lang.Exception
public boolean isIKFServiceAvailable() throws com.ibm.mm.sdk.common.DKException, java.lang.Exception
public com.ibm.mm.sdk.common.DKIKFService getIKFService()
public void connect(java.lang.String server, int portNo, java.lang.String userid, java.lang.String passwd, java.lang.String newPasswd) throws CMBConnectFailedException, CMBException, java.beans.PropertyVetoException
server
- name of the serverportNo
- port numberuserid
- userid to use to logonpasswd
- fedarated userid passwordnewPasswd
- new password to use for change passwordCMBConnectFailedException
- if
CMBException
- if other error occurs during connecting to content server.
Call CMBException.getErrorData() to get the original exception object.java.beans.PropertyVetoException
- if connection is already established or input parameters
are not valid.public void connect(java.lang.String server, int portNo, int servicePortNo, java.lang.String userid, java.lang.String passwd, java.lang.String newPasswd) throws CMBConnectFailedException, CMBException, java.beans.PropertyVetoException
server
- name of the serverportNo
- port number of the datastore serverservicePortNo
- port number of the service serveruserid
- userid to use to logonpasswd
- fedarated userid passwordnewPasswd
- new password to use for change passwordCMBConnectFailedException
- if
CMBException
- if other error occurs during connecting to content server.
Call CMBException.getErrorData() to get the original exception object.java.beans.PropertyVetoException
- if connection is already established or input parameters
are not valid.public void startTransaction() throws CMBException
public void commit() throws CMBException
public void rollback() throws CMBException
public java.lang.String[] getMimeTypes() throws CMBException
public void connectWithCredential(java.lang.String serverName, CMBAuthenticationData cred, java.lang.String connString) throws CMBConnectFailedException, CMBException
server
- name of the servercred
- the credential/authentication object for single sign-onconnString
- server-specific data needed on connectionCMBConnectFailedException
- CMBException
- if other error occurs during connecting to content server.
Call CMBException.getErrorData() to get the original exception object.java.beans.PropertyVetoException
- if connection is already established or input parameters
are not valid.public void disconnect() throws CMBNoConnectionException, CMBException
CMBNoConnectionException
- if there is no connection to current content server.CMBException
- will be thrown for the following errorCode form CMBException.getErrorCode():
public void requestConnection(java.lang.String serverName, java.lang.String uid, java.lang.String passwd, java.lang.String newPasswd, java.lang.String connectString) throws CMBConnectFailedException, CMBException
serverName
- - name of the back-end serveruid
- - userid for logon to this back-end serverpasswd
- - password to logon to this back-end servernewPasswd
- - new password changing password to the back-end serverconnectString
- - back-end specific connection stringCMBConnectFailedException
- if invalid userid/password or server not availableCMBException
- if other error occurspublic void cancelConnection()
CMBNoConnectionException
- if there is no connection to current content server.CMBException
- will be thrown for the following errorCode form CMBException.getErrorCode():
public boolean isConnected()
public boolean isConnectedWorkFlow()
public void changePassword() throws CMBException, CMBChangePasswordFailedException
CMBException
- if error occurs in the server.CMBChangePasswordFailedException
- if unable to change password on the server
Call CMBException.getErrorData() to get the original exception object.public void changePassword(java.lang.String newPasswd) throws java.beans.PropertyVetoException, CMBException, CMBChangePasswordFailedException
newPasswd
- new password to be changedCMBException
- if error occurs in the serverCMBChangePasswordFailedException
- if unable to change password on the server
Call CMBException.getErrorData() to get the original exception object.java.beans.PropertyVetoException
- if property value is not validpublic CMBSchemaManagement getSchemaManagement()
public CMBObjectManagement getObjectManagement()
public CMBDataManagement getDataManagement()
public com.ibm.mm.sdk.common.dkWorkFlowServiceFed getWorkFlowServiceFed()
public CMBQueryService getQueryService()
public CMBDocRoutingDataManagementICM getDocRoutingDataManagementICM()
public CMBDocRoutingQueryServiceICM getDocRoutingQueryServiceICM()
public CMBWorkFlowDataManagement getWorkFlowDataManagement()
public CMBWorkFlowQueryService getWorkFlowQueryService()
public CMBUserManagement getUserManagement()
public void addCMBConnectionReplyListener(CMBConnectionReplyListener aListener)
aListener
- a ConnectionReplyListener object to be addedpublic void removeCMBConnectionReplyListener(CMBConnectionReplyListener aListener)
aListener
- a listener to be unregisteredpublic void addCMBExceptionListener(CMBExceptionListener listener)
listener
- listener to be registeredpublic void removeCMBExceptionListener(CMBExceptionListener listener)
listener
- listener to be unregisteredpublic void addCMBTraceListener(CMBTraceListener listener)
listener
- listener to be registeredpublic void removeCMBTraceListener(CMBTraceListener listener)
listener
- listener to be unregisteredpublic void onCMBConnectionRequest(CMBConnectionRequestEvent evt)
onCMBConnectionRequest
in interface CMBConnectionRequestListener
evt
- requestion eventpublic void vetoableChange(java.beans.PropertyChangeEvent evt) throws java.beans.PropertyVetoException
vetoableChange
in interface java.beans.VetoableChangeListener
evt
- a property changed eventjava.beans.PropertyVetoException
- if property value is invalidpublic void finalize()
finalize
in class java.lang.Object
public com.ibm.mm.sdk.common.dkDatastore getDatastore()
public CMBConnectionReplyEvent getConnectionReplyEvent()
public CMBTraceEvent getTraceEvent()
public CMBExceptionEvent getExceptionEvent()
public java.lang.String toString()
toString
in class java.lang.Object
protected java.lang.String getCorrectURLString(java.lang.String urlString)
|
EIP JavaBeans | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |