|
Oracle | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.compoze.domino.AbstractItem
com.compoze.domino.Profile
com.compoze.domino.OutOfOfficeProfile
public class OutOfOfficeProfile
This class represents the a domino profile .
| Field Summary | |
|---|---|
static PropertyKey[] |
ALL_PROPS
Contains an array of all of the properties available on a memo. |
static java.lang.String |
NAME
The default name for the profile used by the out of office agent. |
| Fields inherited from class com.compoze.domino.AbstractItem |
|---|
m_props, m_session |
| Method Summary | |
|---|---|
java.lang.String |
getBusyTimeSubj()
Gets the busy time subject. |
java.lang.String |
getCalendarEntryID()
Gets the Document ID of the calendar entry used for booking busy time. |
java.lang.String |
getCurrentStatus()
Gets the status. |
java.util.Date |
getDateDisableReminderSent()
Gets the disable reminder day. |
java.util.Date |
getDateFirstReminderSent()
Gets the first reminder day. |
java.lang.String |
getDaysOutGeneral()
Gets the days out message. |
java.lang.String |
getDaysOutSpecial()
Gets the days out message. |
java.lang.String |
getGeneralMessage()
Gets the message to send when reply to mail recieved. |
java.lang.String |
getGeneralSubject()
Gets the subject to send when reply to mail recieved. |
java.lang.String[] |
getIgnoreFromList()
Gets the array of people that do not recieve a response from the agent. |
java.lang.String[] |
getIgnoreSend()
The agent does not automatically respond to mail which is addressed to users in this list. |
java.lang.String[] |
getIgnoreSubjectPhrase()
The agent does not automatically respond to mail which contains these subject phrases. |
java.util.Date |
getLeaving()
Gets the first day out. |
java.lang.String[] |
getNotified()
Gets the notified list of senders. |
java.util.Date |
getReturning()
Gets the first day back. |
java.lang.String |
getSpecialMessage()
Gets the special message to send when reply to mail recieved. |
java.lang.String[] |
getSpecialPeople()
Gets the array of special people. |
java.lang.String |
getSpecialSubject()
Gets the subject to send when reply to mail recieved. |
boolean |
isBookBusyTime()
Gets the busy time. |
boolean |
isEnabled()
Gets the enabled status. |
boolean |
isExcludeInternetEmail()
Gets the ExcludeFromInternetEmail option. |
void |
serverUpdate()
Sends out-of-office profile updates to the server. |
void |
setBookBusyTime(boolean bBusy)
Sets the busy time. |
void |
setBusyTimeSubj(java.lang.String sSubject)
Sets the busy time subject. |
void |
setCalendarEntryID(java.lang.String sDocumentID)
Sets the Document ID of the calendar entry used for booking busy time. |
void |
setDaysOutGeneral(java.lang.String sDaysOut)
Sets the days out message. |
void |
setDaysOutSpecial(java.lang.String sDaysOut)
Sets the days out message. |
void |
setExcludeInternetEmail(boolean bExclude)
Sets the ExcludeFromInternetEmail option. |
void |
setGeneralMessage(java.lang.String sGeneralMessage)
Sets the message to send when reply to mail recieved. |
void |
setGeneralSubject(java.lang.String sSubject)
Sets the subject to send when reply to mail recieved. |
void |
setIgnoreFromList(java.lang.String[] ignoreFromList)
Sets the array of people the agent does not send a response. |
void |
setIgnoreSend(java.lang.String[] ignoreSend)
The agent does not automatically respond to mail which is addressed to users in this list. |
void |
setIgnoreSubjectPhrase(java.lang.String[] ignoreSubject)
The agent does not automatically respond to mail which contains these subject phrases. |
void |
setLeaving(java.util.Date firstDayOut)
Sets the first day out. |
void |
setReturning(java.util.Date firstDayBack)
Sets the first day back. |
void |
setSpecialMessage(java.lang.String sSpecialMessage)
Sets the special message to send when reply to mail recieved. |
void |
setSpecialPeople(java.lang.String[] specialPeople)
Sets the subject to send when reply to mail recieved. |
void |
setSpecialSubject(java.lang.String sSpecialSubject)
Sets the subject to send when reply to mail recieved. |
| Methods inherited from class com.compoze.domino.Profile |
|---|
getProfileName, getProfileUser, serverDelete |
| Methods inherited from class com.compoze.domino.AbstractItem |
|---|
get, getBoolean, getDate, getDateArray, getDouble, getInt, getPropertyKeys, getString, getStringArray, getUpdatedPropertyValues, set, setBoolean, setDate, setDouble, setInt, setString, setStringArray |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final PropertyKey[] ALL_PROPS
public static final java.lang.String NAME
| Method Detail |
|---|
public boolean isEnabled()
throws DominoException
DominoExceptionPropertyKey.ENABLE_AGENT
public java.lang.String getCurrentStatus()
throws DominoException
DominoExceptionPropertyKey.CURRENT_STATUS
public boolean isExcludeInternetEmail()
throws DominoException
DominoExceptionPropertyKey.EXCLUDE_INTERNET_EMAIL
public void setExcludeInternetEmail(boolean bExclude)
throws DominoException
bExclude - true to exclude internet messages other wise false.
DominoExceptionPropertyKey.EXCLUDE_INTERNET_EMAIL
public boolean isBookBusyTime()
throws DominoException
DominoExceptionPropertyKey.BOOK_BUSY_TIME
public void setBookBusyTime(boolean bBusy)
throws DominoException
bBusy - the time is marked busy.
DominoExceptionPropertyKey.BOOK_BUSY_TIME
public java.lang.String getBusyTimeSubj()
throws DominoException
DominoExceptionPropertyKey.BUSY_TIME_SUBJ
public void setBusyTimeSubj(java.lang.String sSubject)
throws DominoException
sSubject - the busy time subject.
DominoExceptionPropertyKey.BUSY_TIME_SUBJ
public java.lang.String getCalendarEntryID()
throws DominoException
DominoExceptionPropertyKey.CALENDAR_ENTRY_UNID
public void setCalendarEntryID(java.lang.String sDocumentID)
throws DominoException
sUNID - the calendar entry.
DominoExceptionPropertyKey.CALENDAR_ENTRY_UNID
public java.util.Date getDateDisableReminderSent()
throws DominoException
DominoExceptionPropertyKey.DATE_DISABLE_REMINDER_SENT
public java.util.Date getDateFirstReminderSent()
throws DominoException
DominoExceptionPropertyKey.DATE_FIRST_REMINDER_SENT
public java.util.Date getReturning()
throws DominoException
DominoExceptionPropertyKey.FIRST_DAY_BACK
public void setReturning(java.util.Date firstDayBack)
throws DominoException
firstDayBack - the first day user is back.
DominoExceptionPropertyKey.FIRST_DAY_BACK
public java.util.Date getLeaving()
throws DominoException
DominoExceptionPropertyKey.FIRST_DAY_OUT
public void setLeaving(java.util.Date firstDayOut)
throws DominoException
firstDayOut - the first day user is out of the office.
DominoExceptionPropertyKey.FIRST_DAY_OUT
public java.lang.String getDaysOutGeneral()
throws DominoException
DominoExceptionPropertyKey.DAYS_OUT
public void setDaysOutGeneral(java.lang.String sDaysOut)
throws DominoException
sDaysOut - the days out message.
DominoExceptionPropertyKey.DAYS_OUT
public java.lang.String getDaysOutSpecial()
throws DominoException
DominoExceptionPropertyKey.DAYS_OUT_1
public void setDaysOutSpecial(java.lang.String sDaysOut)
throws DominoException
sDaysOut - the days out message.
DominoExceptionPropertyKey.DAYS_OUT_1
public java.lang.String getGeneralMessage()
throws DominoException
DominoExceptionPropertyKey.GENERAL_MESSAGE
public void setGeneralMessage(java.lang.String sGeneralMessage)
throws DominoException
sGeneralMessage - the message sent.
DominoExceptionPropertyKey.GENERAL_MESSAGE
public java.lang.String getGeneralSubject()
throws DominoException
DominoExceptionPropertyKey.GENERAL_SUBJECT
public void setGeneralSubject(java.lang.String sSubject)
throws DominoException
sGeneralSubject - the subject sent.
DominoExceptionPropertyKey.GENERAL_SUBJECT
public java.lang.String[] getNotified()
throws DominoException
DominoExceptionPropertyKey.NOTIFIED
public java.lang.String[] getIgnoreFromList()
throws DominoException
DominoExceptionPropertyKey.IGNORE_FROM_LIST
public void setIgnoreFromList(java.lang.String[] ignoreFromList)
throws DominoException
ignoreFromList - the array of senders to ignore.
DominoExceptionPropertyKey.IGNORE_FROM_LIST
public java.lang.String[] getIgnoreSend()
throws DominoException
DominoExceptionPropertyKey.IGNORE_SEND
public void setIgnoreSend(java.lang.String[] ignoreSend)
throws DominoException
ignoreSend - the array of send to ignored.
DominoExceptionPropertyKey.IGNORE_SEND
public java.lang.String[] getIgnoreSubjectPhrase()
throws DominoException
DominoExceptionPropertyKey.IGNORE_SUBJECT_PHRASE
public void setIgnoreSubjectPhrase(java.lang.String[] ignoreSubject)
throws DominoException
ignoreSubject - the array of subjects to ignore.
DominoExceptionPropertyKey.IGNORE_SUBJECT_PHRASE
public java.lang.String getSpecialMessage()
throws DominoException
DominoExceptionPropertyKey.SPECIAL_MESSAGE
public void setSpecialMessage(java.lang.String sSpecialMessage)
throws DominoException
sSpecialMessage - the special message sent.
DominoExceptionPropertyKey.SPECIAL_MESSAGE
public java.lang.String getSpecialSubject()
throws DominoException
DominoExceptionPropertyKey.SPECIAL_SUBJECT
public void setSpecialSubject(java.lang.String sSpecialSubject)
throws DominoException
sSpecialSubject - the special subject sent.
DominoExceptionPropertyKey.SPECIAL_SUBJECT
public java.lang.String[] getSpecialPeople()
throws DominoException
DominoExceptionPropertyKey.SPECIAL_PEOPLE
public void setSpecialPeople(java.lang.String[] specialPeople)
throws DominoException
specialPeople - the array of special people.
DominoExceptionPropertyKey.SPECIAL_PEOPLE
public void serverUpdate()
throws DominoException
serverUpdate in class ProfileDominoException
|
Oracle | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||