Class Message
- java.lang.Object
-
- com.priint.pubserver.tagging.TaggingObject
-
- com.priint.pubserver.comet.bridge.Comet3Entity
-
- com.priint.pubserver.comet3.entity.Message
-
- All Implemented Interfaces:
java.io.Serializable
public class Message extends Comet3Entity
Java Interface for message complex type. For internal use only
The following schema fragment specifies the expected content contained within this class.
<complexType name="message"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> <element name="translation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.priint.pubserver.tagging.TaggingObject
TaggingObject.LinkedSetWrapper<T>
-
-
Field Summary
-
Fields inherited from class com.priint.pubserver.comet.bridge.Comet3Entity
id, timestamp
-
Fields inherited from class com.priint.pubserver.tagging.TaggingObject
tagsSet
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetKey()Gets key.java.lang.StringgetTranslation()Gets translation.voidsetKey(java.lang.String key)Sets key.voidsetTranslation(java.lang.String translation)Sets translation.-
Methods inherited from class com.priint.pubserver.comet.bridge.Comet3Entity
entityEquals, entityEquals, getId, getLastModificationTimestamp, info, postprocess, setId, setLastModificationTimestamp
-
Methods inherited from class com.priint.pubserver.tagging.TaggingObject
addToTags, getTags, getTagValue, inTags, isA, removeFromTags, searchListByTags, setTags, setTags
-
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Gets key.- Returns:
- the key
-
setKey
public void setKey(java.lang.String key)
Sets key.- Parameters:
key- the key
-
getTranslation
public java.lang.String getTranslation()
Gets translation.- Returns:
- the translation
-
setTranslation
public void setTranslation(java.lang.String translation)
Sets translation.- Parameters:
translation- the translation
-
-