Nitido Inc.

Uses of Class
com.nitido.nimx.nuggets.wcap.WcapException

Packages that use WcapException
com.nitido.nimx.nuggets.wcap This package contains the Nugget and associate classes for accessing iPlanet Calendar Server through WCAP commands. 
 

Uses of WcapException in com.nitido.nimx.nuggets.wcap
 

Subclasses of WcapException in com.nitido.nimx.nuggets.wcap
 class InvalidParameterException
          This exception is thrown when at least one of the required parameters is missing, or, one of the parameters has invalid value or format.
 class InvalidTimeException
          This exception is thrown when a group of time settings (including the start time, end time and other associated values) contains invalid value(s).
 class WcapServerException
          Indicates the iPlanet Calendar Server has just returned an unexpected error code.
 

Methods in com.nitido.nimx.nuggets.wcap that throw WcapException
 CalendarProperty WcapNugget.createCalendar(java.lang.String calId)
          Create a calendar (with default properties).
 CalendarProperty WcapNugget.createCalendarWithProperty(CalendarProperty calProp)
          Create a calendar with the specified properties.
 void WcapNugget.deleteCalendar(java.lang.String calId)
          Delete the specific calendar.
 void WcapNugget.deleteEventsById(java.lang.String calId, java.lang.String uid, java.lang.String rid, WcapModifier mod, boolean notify)
          Remove the specified event and its recurrence as specified.
 void WcapNugget.deleteEventsByRange(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend)
          Delete all events within the specified time range.
 void WcapNugget.deleteToDosById(java.lang.String calId, java.lang.String uid, java.lang.String rid, WcapModifier mod, boolean notify)
          Remove the specified todo and its recurrence as specified.
 void WcapNugget.deleteToDosByRange(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend)
          Delete ToDos within the range.
 java.util.Vector WcapNugget.fetchEventsByAlarmRange(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend, int maxResults)
          Retrieve events from the specified calendar that have alarm (reminder) within the time range.
 java.util.Vector WcapNugget.fetchEventsByAttendeeError(java.lang.String calId, java.lang.String attendee, int maxResults)
          Retrieves all events from the specified calId that has errors associated to the attendee.
 java.util.Vector WcapNugget.fetchEventsById(java.lang.String calId, java.lang.String uid, java.lang.String rid, WcapModifier modifier)
          Fetch the event and all its recurrences from the specified calendar.
 java.util.Vector WcapNugget.fetchEventsByLastMod(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend, int maxResults)
          Retrieves all events from the specified calendar that has been modified within the time range.
 java.util.Vector WcapNugget.fetchEventsByRange(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend, int maxResults)
          Retrieve all events from the specified calendar with activity within the time range.
 java.util.Vector WcapNugget.fetchToDosByAlarmRange(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend, int maxResults)
          Retrieve ToDos from the specified calendar that have alarm (reminder) within the time range.
 java.util.Vector WcapNugget.fetchToDosByAttendeeError(java.lang.String calId, java.lang.String attendee, int maxResults)
          Retrieves all todos from the specified calId that has errors associated to the attendee.
 java.util.Vector WcapNugget.fetchToDosById(java.lang.String calId, java.lang.String uid, java.lang.String rid, WcapModifier modifier)
          Fetch the todo and all its recurrences from the specified calendar.
 java.util.Vector WcapNugget.fetchToDosByLastMod(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend, int maxResults)
          Retrieves all todos from the specified calendar that has been modified within the time range.
 java.util.Vector WcapNugget.fetchToDosByRange(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend, int maxResults)
          Retrieve all todos from the specified calendar with activity within the time range.
static java.lang.String WcapNuggetHelper.formatCalId(WcapNugget nugget, java.lang.String calId)
           
 java.util.Vector WcapNugget.getAllTimeZoneIds()
          Get a list of all TimeZone ids that are supported by the iPlanet Calendar Server.
 CalendarProperty WcapNugget.getCalendarProperty(java.lang.String calId)
          Retrieves the property of the specified calendar.
 java.util.Vector WcapNugget.getFreeBusy(java.lang.String calId, java.util.Date dtstart, java.util.Date dtend)
          Get the free/busy slots within the specified time range.
 java.util.Vector WcapNugget.getFreeBusyByEmail(java.lang.String email, java.util.Date dtstart, java.util.Date dtend)
          Get the free/busy slots within the specified time range by the user's email address.
 UserPref WcapNugget.getUserPreference()
          Get the user's preference.
 boolean WcapNugget.login(boolean isRelogin, boolean needDelay)
          Login to calendar server.
 void WcapNugget.logout()
          Logout from the calendar server.
 java.util.Vector WcapNugget.searchForCalendars(java.lang.String searchString, boolean searchCalId, boolean searchName, boolean searchPrimaryOwner, SearchOption searchOption, int maxResults)
          Search for calendars that matches the criteria.
 boolean WcapNugget.sessionIsAlive()
          Check whether the current session is still accepted by the Calendar Server.
 void WcapNugget.setCalendarProperty(CalendarProperty calProp)
          Set the specified calendar property.
 void WcapNugget.setUserPreference(UserPref userPref)
          Set the user's preference.
 java.lang.String WcapNugget.storeEvent(java.lang.String calId, WcapModifier modifier, Event event)
          Add or modify an event.
 java.lang.String WcapNugget.storeToDo(java.lang.String calId, WcapModifier modifier, ToDo todo)
          Add or modify an todo.
 java.lang.String UserPref.toWcapQuery(WcapNugget nugget)
          Convert the information into a string that is used for constructing a WCAP query.
 java.lang.String RecurFreq.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String WcapModifier.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String Attendee.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String CalendarProperty.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String SearchOption.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String CompStatus.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String WeekDay.toWcapQuery(WcapNugget nugget)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String RecurRule.toWcapQuery(WcapNugget nugget, java.text.DateFormat dfFull)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String Alarm.toWcapQuery(WcapNugget nugget, java.text.DateFormat dfFull)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String RecurDate.toWcapQuery(WcapNugget nugget, java.text.DateFormat dfDay, java.text.DateFormat dfFull)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String Component.toWcapQuery(WcapNugget nugget, java.text.DateFormat dfDay, java.text.DateFormat dfFull)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String Event.toWcapQuery(WcapNugget nugget, java.text.DateFormat dfDay, java.text.DateFormat dfFull)
          Convert the component into a string that is used for constructing a WCAP query.
 java.lang.String ToDo.toWcapQuery(WcapNugget nugget, java.text.DateFormat dfDay, java.text.DateFormat dfFull)
          Convert the component into a string that is used for constructing a WCAP query.
protected  java.lang.String WcapNugget.urlEncode(java.lang.String inStr)
           
 


Nitido NiM 2.5 Java API

These JavaDoc pages are generated for release/nim_2_5-2.5.44

Copyright © 1999-2009 Nitido Inc.    Proprietary and Confidential.    All Rights Reserved.