public class Conversation extends Object implements Serializable
Modifier and Type | Class and Description |
---|---|
static class |
Conversation.ConversationChildren |
static class |
Conversation.ConversationFields |
Modifier and Type | Field and Description |
---|---|
static String |
CONVERSATION_QUERY_OBJECT_NAME |
Constructor and Description |
---|
Conversation() |
Modifier and Type | Method and Description |
---|---|
Date |
getCreated() |
Person |
getCreatedBy() |
String |
getId() |
List<Message> |
getMessages() |
Date |
getUpdated() |
Person |
getUpdatedBy() |
void |
setCreated(Date created) |
void |
setCreatedBy(Person createdBy) |
void |
setId(String id) |
void |
setMessages(List<Message> messages) |
void |
setUpdated(Date updated) |
void |
setUpdatedBy(Person updatedBy) |
public static final String CONVERSATION_QUERY_OBJECT_NAME
public String getId()
public void setId(String id)
id
- String, id of the Conversationpublic Date getCreated()
public void setCreated(Date created)
created
- Date the Conversation was createdpublic Date getUpdated()
public void setUpdated(Date updated)
updated
- Date the Conversation was last updatedpublic Person getCreatedBy()
public void setCreatedBy(Person createdBy)
createdBy
- Person the Conversation was created bypublic Person getUpdatedBy()
public void setUpdatedBy(Person updatedBy)
updatedBy
- Person the Conversation was last updated bypublic List<Message> getMessages()
Message
objects corresponding to the messages in this ConversationCopyright © 2018 OpenNTF. All rights reserved.