|
Oracle | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface IExchangeItem
This interface is used to define an item in exchange.
| Field Summary | |
|---|---|
static Key |
CONTACT_NAMES
Key that represents the contact names for an item. |
static Key |
CREATOR_ENTRYID
Key that represents the creator entry ID of an item. |
static Key |
FLAG
Key that represents the flag on a message as a FlagStatus. |
static Key |
FLAG_REMIND_BY
Key that represents the reminder date for an item that is used to display reminder messages in Microsoft Outlook. |
static Key |
FLAG_TEXT
Key that represents the flag text for aan Exchange item as a FlagText. |
static Key |
HAS_REMINDER
The key representing if a reminder is set on the Exchange item. |
static Key |
HIDE_ATTACHMENTS
Key that represents whether attachments are hidden. |
static Key |
ICON_INDEX
Key that represents the icon index value for an Exchange item. |
static Key |
IS_HIDDEN
Key that represents when an item is hidden. |
static int |
KEYID_CONTACT_NAMES
The int ID for the CONTACT_NAMES key. |
static int |
KEYID_CREATOR_ENTRYID
The int ID for the CREATOR_ENTRYID key. |
static int |
KEYID_FLAG
The int ID for the FLAG key. |
static int |
KEYID_FLAG_REMIND_BY
The int ID for the FLAG_REMIND_BY key. |
static int |
KEYID_FLAG_TEXT
The int ID for the FLAG_TEXT key. |
static int |
KEYID_HAS_REMINDER
The int ID for the HAS_REMINDER key. |
static int |
KEYID_HIDE_ATTACHMENTS
The int ID for the HIDE_ATTACHMENTS key. |
static int |
KEYID_ICON_INDEX
The int ID for the ICON_INDEX key. |
static int |
KEYID_IS_HIDDEN
The int ID for the IS_HIDDEN key. |
static int |
KEYID_MILEAGE
The int ID for the MILEAGE key. |
static int |
KEYID_NORMALIZED_SUBJECT
The int ID for the NORMALIZED_SUBJECT key. |
static int |
KEYID_PRIORITY
The int ID for the PRIORITY key. |
static int |
KEYID_SENSITIVITY
The int ID for the SENSITIVITY key. |
static int |
KEYID_SUBJECT_PREFIX
The int ID for the FLAG_REMIND_BY key. |
static Key |
MILEAGE
Key that represents the mileage for an Exchange item. |
static Key |
NORMALIZED_SUBJECT
Key that represents the normalized subject of an Exchange item. |
static Key |
PRIORITY
Key that represents the priority of an item. |
static Key |
SENSITIVITY
Key that represents the sensitivity of an item. |
static Key |
SUBJECT_PREFIX
The key representing if a reminder is set on the Exchange item. |
| Fields inherited from interface com.compoze.collab.IAttachmentSupport |
|---|
ATTACHMENTS, HAS_ATTACHMENT, KEYID_ATTACHMENTS, KEYID_HAS_ATTACHMENT |
| Method Summary | |
|---|---|
java.lang.String[] |
getContactNames()
Gets the contact names. |
FlagStatus |
getFlagStatus()
Gets the flag status. |
java.lang.String |
getFlagText()
Gets the flag text. |
boolean |
getHideAttachments()
Gets whether attachments are hidden. |
java.lang.String |
getMileage()
Gets the mileage. |
Priority |
getPriority()
Gets the priority of the item. |
Sensitivity |
getSensitivity()
Gets the sensiivity of the item. |
java.lang.String |
getSubjectPrefix()
Gets whether attachments are hidden. |
boolean |
isHidden()
Gets the hidden status of the item. |
void |
setContactNames(java.lang.String[] sContactNames)
Sets the contact names. |
void |
setFlagStatus(FlagStatus flagStatus)
Sets the flag status level. |
void |
setFlagText(java.lang.String sFlagText)
Sets the flag status level. |
void |
setHideAttachments(boolean bHidden)
Sets whether attachments should be hidden. |
void |
setMileage(java.lang.String sMileage)
Sets the mileage. |
void |
setPriority(Priority priority)
Sets the priority of the item. |
void |
setSensitivity(Sensitivity sensitivity)
Sets the sensiivity of the item. |
void |
setSubjectPrefix(java.lang.String sPrefix)
Sets the subject prefix of an Exchange item. |
| Methods inherited from interface com.compoze.collab.IAttachmentSupport |
|---|
addAttachment, getAttachment, getAttachmentCount, getAttachments, hasAttachment |
| Field Detail |
|---|
static final int KEYID_CONTACT_NAMES
int ID for the CONTACT_NAMES key.
static final int KEYID_IS_HIDDEN
int ID for the IS_HIDDEN key.
static final int KEYID_HAS_REMINDER
int ID for the HAS_REMINDER key.
static final int KEYID_PRIORITY
int ID for the PRIORITY key.
static final int KEYID_SENSITIVITY
int ID for the SENSITIVITY key.
static final int KEYID_CREATOR_ENTRYID
int ID for the CREATOR_ENTRYID key.
static final int KEYID_HIDE_ATTACHMENTS
int ID for the HIDE_ATTACHMENTS key.
static final int KEYID_FLAG_REMIND_BY
int ID for the FLAG_REMIND_BY key.
static final int KEYID_SUBJECT_PREFIX
int ID for the FLAG_REMIND_BY key.
static final int KEYID_MILEAGE
int ID for the MILEAGE key.
static final int KEYID_FLAG
int ID for the FLAG key.
static final int KEYID_FLAG_TEXT
int ID for the FLAG_TEXT key.
static final int KEYID_ICON_INDEX
int ID for the ICON_INDEX key.
static final int KEYID_NORMALIZED_SUBJECT
int ID for the NORMALIZED_SUBJECT key.
static final Key CONTACT_NAMES
static final Key IS_HIDDEN
static final Key SENSITIVITY
static final Key PRIORITY
static final Key CREATOR_ENTRYID
static final Key HIDE_ATTACHMENTS
static final Key FLAG_REMIND_BY
static final Key HAS_REMINDER
static final Key SUBJECT_PREFIX
static final Key MILEAGE
static final Key FLAG
FlagStatus.
FlagStatusstatic final Key FLAG_TEXT
FlagText.
FlagTextstatic final Key ICON_INDEX
static final Key NORMALIZED_SUBJECT
| Method Detail |
|---|
void setContactNames(java.lang.String[] sContactNames)
throws CollaborationException
sContactNames - the contact names
CollaborationException - if there was an error setting the contact names
java.lang.String[] getContactNames()
throws CollaborationException
CollaborationException - if there was an error getting the contact namessetContactNames(String[])
boolean isHidden()
throws CollaborationException
CollaborationException - if there was an error getting the hidden status
PropertyMissingException - if the property was requested but not available
void setPriority(Priority priority)
throws CollaborationException
priority - the priority
CollaborationException - if there was an error setting the priority
Priority getPriority()
throws CollaborationException
CollaborationException - if there was an error getting the priority
void setSensitivity(Sensitivity sensitivity)
throws CollaborationException
sensitivity - the sensitivity
CollaborationException - if there was an error setting the sensitivity
Sensitivity getSensitivity()
throws CollaborationException
CollaborationException - if there was an error getting the sensitivity
void setHideAttachments(boolean bHidden)
throws CollaborationException
bHidden - true to hide attachments.
CollaborationException - if there was an error setting this value
boolean getHideAttachments()
throws CollaborationException
true if attachments are hidden
CollaborationException - if there was an error getting this value
void setSubjectPrefix(java.lang.String sPrefix)
throws CollaborationException
sPrefix - the prefix to set (e.g. "RE: ").
CollaborationException - if there was an error setting the prefix
java.lang.String getSubjectPrefix()
throws CollaborationException
true if attachments are hidden
CollaborationException - if there was an error getting the prefix
void setMileage(java.lang.String sMileage)
throws CollaborationException
sMileage - the mileage
CollaborationException - if there was an error setting the mileage
java.lang.String getMileage()
throws CollaborationException
CollaborationException - if there was an error getting the mileagesetMileage(String)
void setFlagStatus(FlagStatus flagStatus)
throws CollaborationException
flagStatus - the flag status to set or null to remove
the flag status.
CollaborationException - if there was an error setting the flag status.
FlagStatus getFlagStatus()
throws CollaborationException
CollaborationException - if there was an error getting the flag status.getFlagStatus()
void setFlagText(java.lang.String sFlagText)
throws CollaborationException
sFlagText - the flag text to set.
CollaborationException - if there was an error setting the flag text.FlagTextEnum
java.lang.String getFlagText()
throws CollaborationException
CollaborationException - if there was an error getting the flag text.getFlagText()
|
Oracle | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||