Interface UserMessageDefinitionComp
-
- All Known Subinterfaces:
UserMessageDefinition
public interface UserMessageDefinitionComp
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<UserMessageDefinitionAttachment>
getUserMessageDefinitionAttachments()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessageDefinition.getUserMessageDefinitionAttachments()
instead.Iterator<UserMessageDefinitionParticipant>
getUserMessageDefinitionParticipants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessageDefinition.getUserMessageDefinitionParticipants()
instead.Iterator<UserMessageDefinitionResponse>
getUserMessageDefinitionResponses()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessageDefinition.getUserMessageDefinitionResponses()
instead.
-
-
-
Method Detail
-
getUserMessageDefinitionResponses
@Deprecated Iterator<UserMessageDefinitionResponse> getUserMessageDefinitionResponses()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessageDefinition.getUserMessageDefinitionResponses()
instead.Get anIterator
over a collection ofUserMessageDefinitionResponses
, 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 reply actions of the UserMessage.- Returns:
- An
Iterator
over a collection ofUserMessageDefinitionResponse
objects , the collection will be ordered by UniqueId.
-
getUserMessageDefinitionAttachments
@Deprecated Iterator<UserMessageDefinitionAttachment> getUserMessageDefinitionAttachments()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessageDefinition.getUserMessageDefinitionAttachments()
instead.Get anIterator
over a collection ofUserMessageDefinitionAttachments
, the collection will be ordered by Description. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The files of the UserMessage.- Returns:
- An
Iterator
over a collection ofUserMessageDefinitionAttachment
objects , the collection will be ordered by Description.
-
getUserMessageDefinitionParticipants
@Deprecated Iterator<UserMessageDefinitionParticipant> getUserMessageDefinitionParticipants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useUserMessageDefinition.getUserMessageDefinitionParticipants()
instead.Get anIterator
over an ordered collection ofUserMessageDefinitionParticipants
. 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 ofUserMessageDefinitionParticipant
objects .
-
-