Schnittstelle IExchangeNoteUtil
- Alle bekannten Implementierungsklassen:
ExchangeNoteUtil
@Scriptable
public interface IExchangeNoteUtil
Defines utility methods for working with MS Exchange notes.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungVeraltet.createNewNote(String p_strNote, String p_strUserMailbox) Creates a new note.Finds a note by the given ID.findByPermanentUrl(String p_strUrl) Finds a note by the given permanent URL.
-
Methodendetails
-
createNew
@Deprecated IExchangeNote createNew(String p_strNote, String p_strUserMailbox) throws de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException Veraltet.Creates a new note.- Parameter:
p_strUserMailbox- The user mailbox or null for the current user.- Gibt zurück:
- The
IExchangeNoteinstance. - Löst aus:
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.- Parameter:
p_strUserMailbox- The user mailbox or null for the current user.- Gibt zurück:
- The
IExchangeNoteinstance. - Löst aus:
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.- Parameter:
p_strId- The ID.- Gibt zurück:
- The
IExchangeNoteinstance. - Löst aus:
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.- Parameter:
p_strUrl- The permanent URL.- Gibt zurück:
- The note.
- Löst aus:
de.uplanet.lucy.server.businesslogic.exchange.util.ExchangeUtilException- If note could not be found.
-