wt.conflict
Class MessageElement

java.lang.Object
  extended bywt.conflict.MessageElement
All Implemented Interfaces:
Externalizable, Serializable
Direct Known Subclasses:
ConflictElement, InfoElement

public class MessageElement
extends Object
implements Externalizable



Supported API: false

Extendable: false

See Also:
Serialized Form

Field Summary
private static String CLASSNAME
           
private  MessageType code
           
private  Timestamp conflictTime
           
static long EXTERNALIZATION_VERSION_UID
           
private  LocalizableMessage message
           
private  WTCollection objectCollection
           
protected static long OLD_FORMAT_VERSION_UID
           
private static String RESOURCE
           
(package private) static long serialVersionUID
           
 
Constructor Summary
MessageElement()
           
 
Method Summary
 MessageType getCode()
          Gets the value of the attribute: code; This will identify the conflict or message of MessageType, an enumerated type.
 Timestamp getConflictTime()
          Gets the value of the attribute: conflictTime; The time at which event causing this message has occurred.
 LocalizableMessage getMessage()
          Gets the value of the attribute: message; This would be the localizable message associated with the object specific information.
 WTCollection getObjectCollection()
          Gets the value of the attribute: objectCollection; A WTCollection implementation of Persistables.
private  void initialize(ConflictType conflictType, ResolutionType[] allResolutions, ResolutionType defaultResolution, LocalizableMessage message)
           
 void readExternal(ObjectInput input)
          Reads the non-transient fields of this class from an external source.
private  boolean readOldVersion(ObjectInput input, long readSerialVersionUID, boolean passThrough, boolean superDone)
          Reads the non-transient fields of this class from an external source, which is not the current version.
protected  boolean readVersion(MessageElement thisObject, ObjectInput input, long readSerialVersionUID, boolean passThrough, boolean superDone)
          Reads the non-transient fields of this class from an external source.
 void setCode(MessageType a_Code)
          Sets the value of the attribute: code; This will identify the conflict or message of MessageType, an enumerated type.
 void setConflictTime(Timestamp a_ConflictTime)
          Sets the value of the attribute: conflictTime; The time at which event causing this message has occurred.
 void setMessage(LocalizableMessage a_Message)
          Sets the value of the attribute: message; This would be the localizable message associated with the object specific information.
 void setObjectCollection(WTCollection a_ObjectCollection)
          Sets the value of the attribute: objectCollection; A WTCollection implementation of Persistables.
 String toString()
          Creates String representation involving code, the objects involved and the time at which it is reported.
 void writeExternal(ObjectOutput output)
          Writes the non-transient fields of this class to an external source.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME

code

private MessageType code

objectCollection

private WTCollection objectCollection

conflictTime

private Timestamp conflictTime

message

private LocalizableMessage message

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values

EXTERNALIZATION_VERSION_UID

public static final long EXTERNALIZATION_VERSION_UID
See Also:
Constant Field Values

OLD_FORMAT_VERSION_UID

protected static final long OLD_FORMAT_VERSION_UID
See Also:
Constant Field Values
Constructor Detail

MessageElement

public MessageElement()
Method Detail

writeExternal

public void writeExternal(ObjectOutput output)
                   throws IOException
Writes the non-transient fields of this class to an external source.

Supported API: false

Specified by:
writeExternal in interface Externalizable
Parameters:
output -
Throws:
IOException

readExternal

public void readExternal(ObjectInput input)
                  throws IOException,
                         ClassNotFoundException
Reads the non-transient fields of this class from an external source.

Supported API: false

Specified by:
readExternal in interface Externalizable
Parameters:
input -
Throws:
IOException
ClassNotFoundException

readVersion

protected boolean readVersion(MessageElement thisObject,
                              ObjectInput input,
                              long readSerialVersionUID,
                              boolean passThrough,
                              boolean superDone)
                       throws IOException,
                              ClassNotFoundException
Reads the non-transient fields of this class from an external source.

Supported API: false

Parameters:
thisObject -
input -
readSerialVersionUID -
passThrough -
superDone -
Returns:
boolean
Throws:
IOException
ClassNotFoundException

readOldVersion

private boolean readOldVersion(ObjectInput input,
                               long readSerialVersionUID,
                               boolean passThrough,
                               boolean superDone)
                        throws IOException,
                               ClassNotFoundException
Reads the non-transient fields of this class from an external source, which is not the current version.

Parameters:
input -
readSerialVersionUID -
passThrough -
superDone -
Returns:
boolean
Throws:
IOException
ClassNotFoundException

getCode

public MessageType getCode()
Gets the value of the attribute: code; This will identify the conflict or message of MessageType, an enumerated type.

Supported API: false

Returns:
MessageType

setCode

public void setCode(MessageType a_Code)
             throws WTPropertyVetoException
Sets the value of the attribute: code; This will identify the conflict or message of MessageType, an enumerated type.

Supported API: false

Parameters:
a_Code -
Throws:
WTPropertyVetoException

getObjectCollection

public WTCollection getObjectCollection()
Gets the value of the attribute: objectCollection; A WTCollection implementation of Persistables. For the non-persistent objects, this would represent IdentificationObject's (which would contain the identity for non-persisted object).

Supported API: false

Returns:
WTCollection

setObjectCollection

public void setObjectCollection(WTCollection a_ObjectCollection)
                         throws WTPropertyVetoException
Sets the value of the attribute: objectCollection; A WTCollection implementation of Persistables. For the non-persistent objects, this would represent IdentificationObject's (which would contain the identity for non-persisted object).

Supported API: false

Parameters:
a_ObjectCollection -
Throws:
WTPropertyVetoException

getConflictTime

public Timestamp getConflictTime()
Gets the value of the attribute: conflictTime; The time at which event causing this message has occurred. Provided for sorting on time basis.

Supported API: false

Returns:
Timestamp

setConflictTime

public void setConflictTime(Timestamp a_ConflictTime)
                     throws WTPropertyVetoException
Sets the value of the attribute: conflictTime; The time at which event causing this message has occurred. Provided for sorting on time basis.

Supported API: false

Parameters:
a_ConflictTime -
Throws:
WTPropertyVetoException

getMessage

public LocalizableMessage getMessage()
Gets the value of the attribute: message; This would be the localizable message associated with the object specific information.

Supported API: false

Returns:
LocalizableMessage

setMessage

public void setMessage(LocalizableMessage a_Message)
                throws WTPropertyVetoException
Sets the value of the attribute: message; This would be the localizable message associated with the object specific information.

Supported API: false

Parameters:
a_Message -
Throws:
WTPropertyVetoException

toString

public String toString()
Creates String representation involving code, the objects involved and the time at which it is reported. Provided for logging.

Supported API: false

Returns:
String

initialize

private void initialize(ConflictType conflictType,
                        ResolutionType[] allResolutions,
                        ResolutionType defaultResolution,
                        LocalizableMessage message)