com.xensource.xenapi
Class Message.Record

java.lang.Object
  extended by com.xensource.xenapi.Message.Record
All Implemented Interfaces:
Types.Record
Enclosing class:
Message

public static class Message.Record
extends java.lang.Object
implements Types.Record

Represents all the fields in a Message


Field Summary
 java.lang.String body
          The body of the message
 Types.Cls cls
          The class of the object this message is associated with
 java.lang.String name
          The name of the message
 java.lang.String objUuid
          The uuid of the object this message is associated with
 java.lang.Long priority
          The message priority, 0 being low priority
 java.util.Date timestamp
          The time at which the message was created
 java.lang.String uuid
          Unique identifier/object reference
 
Constructor Summary
Message.Record()
           
 
Method Summary
 java.util.Map<java.lang.String,java.lang.Object> toMap()
          Convert a message.Record to a Map
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

uuid

public java.lang.String uuid
Unique identifier/object reference


name

public java.lang.String name
The name of the message


priority

public java.lang.Long priority
The message priority, 0 being low priority


cls

public Types.Cls cls
The class of the object this message is associated with


objUuid

public java.lang.String objUuid
The uuid of the object this message is associated with


timestamp

public java.util.Date timestamp
The time at which the message was created


body

public java.lang.String body
The body of the message

Constructor Detail

Message.Record

public Message.Record()
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

toMap

public java.util.Map<java.lang.String,java.lang.Object> toMap()
Convert a message.Record to a Map

Specified by:
toMap in interface Types.Record