com.ibm.b2bi.im.bfm.client
Class ADOCBean

java.lang.Object
  |
  +--com.ibm.b2bi.im.bfm.client.ADOCBean

public abstract class ADOCBean
extends java.lang.Object

Base class for all ADOCs developed in WBI. Any ADOC developed for solutions based on WBI must extend this class.


Field Summary
static java.lang.String copyrightNotice
           
 
Constructor Summary
ADOCBean()
           
 
Method Summary
abstract  java.lang.String getAdocId()
          Returns the ID of this ADOC object in the server.
abstract  java.lang.String getAdocState()
          Returns the current state of the ADOC document.
abstract  void setObject(java.lang.Object obj)
          Used to type cast the given object to this class type.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

copyrightNotice

public static final java.lang.String copyrightNotice
Constructor Detail

ADOCBean

public ADOCBean()
Method Detail

getAdocId

public abstract java.lang.String getAdocId()
Returns the ID of this ADOC object in the server. Use this ID to get the same ADOC object instance from the server again.
Returns:
ID of the ADOC object.

getAdocState

public abstract java.lang.String getAdocState()
Returns the current state of the ADOC document.

setObject

public abstract void setObject(java.lang.Object obj)
                        throws java.lang.ClassCastException
Used to type cast the given object to this class type. The given Object must be a representation of an object of this type.
Parameters:
obj - Instance of Object representing and object of this class.