Interface UserMessageComp
-
- All Known Subinterfaces:
UserMessage
public interface UserMessageComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<UserMessageAttachment>
getUserMessageAttachments()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessage.getUserMessageAttachments()
instead.Iterator<UserMessageHistory>
getUserMessageHistories()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessage.getUserMessageHistories()
instead.Iterator<UserMessageParticipant>
getUserMessageParticipants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessage.getUserMessageParticipants()
instead.
-
-
-
Method Detail
-
getUserMessageAttachments
@Deprecated Iterator<UserMessageAttachment> getUserMessageAttachments()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessage.getUserMessageAttachments()
instead.Get anIterator
over an ordered collection ofUserMessageAttachments
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The JobFiles for a UserMessage- Returns:
- An
Iterator
over an ordered collection ofUserMessageAttachment
objects .
-
getUserMessageHistories
@Deprecated Iterator<UserMessageHistory> getUserMessageHistories()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessage.getUserMessageHistories()
instead.Get anIterator
over a collection ofUserMessageHistories
, the collection will be ordered by UniqueId. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The history of the UserMessage response flow.- Returns:
- An
Iterator
over a collection ofUserMessageHistory
objects , the collection will be ordered by UniqueId.
-
getUserMessageParticipants
@Deprecated Iterator<UserMessageParticipant> getUserMessageParticipants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessage.getUserMessageParticipants()
instead.Get anIterator
over an ordered collection ofUserMessageParticipants
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Who can respond to this User Message- Returns:
- An
Iterator
over an ordered collection ofUserMessageParticipant
objects .
-
-