Interface IExchangeNoteUtil
-
- All Known Implementing Classes:
ExchangeNoteUtil
@Scriptable public interface IExchangeNoteUtilDefines utility methods for working with MS Exchange notes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description IExchangeNotecreateNew(String p_strNote, String p_strUserMailbox)Deprecated.IExchangeNotecreateNewNote(String p_strNote, String p_strUserMailbox)Creates a new note.IExchangeNotefindById(String p_strId)Finds a note by the given ID.IExchangeNotefindByPermanentUrl(String p_strUrl)Finds a note by the given permanent URL.
-
-
-
Method Detail
-
createNew
@Deprecated IExchangeNote createNew(String p_strNote, String p_strUserMailbox) throws de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException
Deprecated.Creates a new note.- Parameters:
p_strUserMailbox- The user mailbox or null for the current user.- Returns:
- The
IExchangeNoteinstance. - Throws:
de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException- If note could not be created.
-
createNewNote
IExchangeNote createNewNote(String p_strNote, String p_strUserMailbox) throws de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException
Creates a new note.- Parameters:
p_strUserMailbox- The user mailbox or null for the current user.- Returns:
- The
IExchangeNoteinstance. - Throws:
de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException- If note could not be created.
-
findById
IExchangeNote findById(String p_strId) throws de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException
Finds a note by the given ID.- Parameters:
p_strId- The ID.- Returns:
- The
IExchangeNoteinstance. - Throws:
de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException- If note could not be found.
-
findByPermanentUrl
IExchangeNote findByPermanentUrl(String p_strUrl) throws de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException
Finds a note by the given permanent URL.- Parameters:
p_strUrl- The permanent URL.- Returns:
- The note.
- Throws:
de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException- If note could not be found.
-
-