Nitido Inc.

Uses of Class
com.nitido.nim.ActivationException

Packages that use ActivationException
com.nitido.nim This package contains NiM core classes. 
com.nitido.nimx.nuggets.extmail.real The only implementation of ExtMailNugget. 
com.nitido.nimx.nuggets.helpdesk.dirpool This implementation utilizes the DirPoolService to obtain the directory connections. 
com.nitido.nimx.nuggets.helpdesk.real This implementation establishes new connection for each request transaction. 
com.nitido.nimx.nuggets.iplanetset This package contains the Nugget and helper classes for accessing and modifying user-centric preference settings for communication servers from Sun ONE (which was called iPlanet). 
com.nitido.nimx.nuggets.iplanetset.dirpool This IPlanetSettingsNugget implementation obtains the directory connections from the DirPoolService. 
com.nitido.nimx.nuggets.iplanetset.real This IPlanetSettingsNugget implementation obtains a new directory connection for each request transaction. 
com.nitido.nimx.nuggets.iplanetset.stub This IPlanetSettingsNugget implementation stores the data in memory. 
com.nitido.nimx.nuggets.iplanetset.userspace This IPlanetSettingsNugget implementation stores the data in the associated Entity's user space. 
com.nitido.nimx.nuggets.javamail This package contains the JavaMailNugget and its' helper classes. 
com.nitido.nimx.nuggets.javamail.real This is the first real implementation of JavaMailNugget, which launches the JavaMail connections and keep the IMAP connection reference opened during the nugget's lifetime only. 
com.nitido.nimx.nuggets.javamail.valet This is the "valet" implementation of JavaMailNugget, which "park" the IMAP connections to the ValetService in order to keep the connection opened between requests. 
com.nitido.nimx.nuggets.pab This package contains the Nugget and associate classes for accessing Personal Address Book (PAB). 
com.nitido.nimx.nuggets.pab.real This PABNugget implementation obtains the directory connections from the DirPoolService. 
com.nitido.nimx.nuggets.wcap This package contains the Nugget and associate classes for accessing iPlanet Calendar Server through WCAP commands. 
com.nitido.nimx.services.datacontrol.cachedmap A directory-based implementation of DataControlService that support profile caching and directory pool. 
com.nitido.nimx.services.datacontrol.profilemap A directory-based implementation of DataControlService that allow custom mapping between the user space key and the backend LDAP attribute name. 
com.nitido.nimx.services.datacontrol.sim A simulator implementation of DataControlService. 
com.nitido.nimx.services.simbackend This package contains classes used to simulate a backend data store. 
 

Uses of ActivationException in com.nitido.nim
 

Methods in com.nitido.nim that throw ActivationException
protected abstract  void DataControl.activate()
          This method is used to activates the DataControl after the Entity object containing this DataControl is deserialized.
protected  void Nugget.activate()
          This method is called by the Entity object after that object has been deserialized.
protected abstract  void DataControl.deactivate()
          This method is called to deactivate the DataControl.
protected  void Nugget.deactivate()
          This method is called by the Entity object before that object is serialized.
 

Uses of ActivationException in com.nitido.nimx.nuggets.extmail.real
 

Methods in com.nitido.nimx.nuggets.extmail.real that throw ActivationException
 void ExternalMailNuggetImpl.activate()
          Used by NiM Nugget mechnanism.
 void ExternalMailNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.helpdesk.dirpool
 

Methods in com.nitido.nimx.nuggets.helpdesk.dirpool that throw ActivationException
 void HelpDeskNuggetImpl.activate()
          Used by NiM Nugget mechanism.
 void HelpDeskNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.helpdesk.real
 

Methods in com.nitido.nimx.nuggets.helpdesk.real that throw ActivationException
 void HelpDeskNuggetImpl.activate()
          Used by NiM Nugget mechanism.
 void HelpDeskNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.iplanetset
 

Methods in com.nitido.nimx.nuggets.iplanetset that throw ActivationException
 void IPlanetSettingsNugget.activate()
          Used by NiM Nugget mechanism.
 void IPlanetSettingsNugget.deactivate()
          Used by NiM Nugget mechanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.iplanetset.dirpool
 

Methods in com.nitido.nimx.nuggets.iplanetset.dirpool that throw ActivationException
 void IPlanetSettingsNuggetImpl.activate()
          Used by NiM Nugget mechanism.
 void IPlanetSettingsNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.iplanetset.real
 

Methods in com.nitido.nimx.nuggets.iplanetset.real that throw ActivationException
 void IPlanetSettingsNuggetImpl.activate()
          Used by NiM Nugget mechanism.
 void IPlanetSettingsNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.iplanetset.stub
 

Methods in com.nitido.nimx.nuggets.iplanetset.stub that throw ActivationException
 void IPlanetSettingsNuggetImpl.activate()
          Used by NiM Nugget mechanism.
 void IPlanetSettingsNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.iplanetset.userspace
 

Methods in com.nitido.nimx.nuggets.iplanetset.userspace that throw ActivationException
 void IPlanetSettingsNuggetImpl.activate()
          Used by NiM Nugget mechanism.
 void IPlanetSettingsNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.javamail
 

Methods in com.nitido.nimx.nuggets.javamail that throw ActivationException
abstract  void JavaMailNugget.disconnectIMAP()
          Force a disconnection from the IMAP server.
 

Uses of ActivationException in com.nitido.nimx.nuggets.javamail.real
 

Methods in com.nitido.nimx.nuggets.javamail.real that throw ActivationException
 void JavaMailNuggetImpl.activate()
          Used by NiM Nugget mechnanism.
 void JavaMailNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 void JavaMailNuggetImpl.disconnectIMAP()
          Disconnect from the IMAP server.
 

Uses of ActivationException in com.nitido.nimx.nuggets.javamail.valet
 

Methods in com.nitido.nimx.nuggets.javamail.valet that throw ActivationException
 void JavaMailNuggetImpl.activate()
          Used by NiM Nugget mechnanism.
 void JavaMailNuggetImpl.deactivate()
          Used by NiM Nugget mechnanism.
 void JavaMailNuggetImpl.disconnectIMAP()
          Disconnect from the IMAP server.
 

Uses of ActivationException in com.nitido.nimx.nuggets.pab
 

Methods in com.nitido.nimx.nuggets.pab that throw ActivationException
 void PABNugget.activate()
          Used by NiM Nugget mechanism.
 void PABNugget.deactivate()
          Used by NiM Nugget mechanism.
 

Uses of ActivationException in com.nitido.nimx.nuggets.pab.real
 

Methods in com.nitido.nimx.nuggets.pab.real that throw ActivationException
 void PABNuggetImpl.activate()
           
 void PABNuggetImpl.deactivate()
           
 

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

Methods in com.nitido.nimx.nuggets.wcap that throw ActivationException
 void WcapNugget.activate()
          Used by NiM Nugget mechanism.
 void WcapNugget.deactivate()
          Used by NiM Nugget mechanism.
 

Uses of ActivationException in com.nitido.nimx.services.datacontrol.cachedmap
 

Methods in com.nitido.nimx.services.datacontrol.cachedmap that throw ActivationException
protected  void DataControlImpl.activate()
           
protected  void DataControlImpl.deactivate()
           
 

Uses of ActivationException in com.nitido.nimx.services.datacontrol.profilemap
 

Methods in com.nitido.nimx.services.datacontrol.profilemap that throw ActivationException
protected  void DataControlImpl.activate()
           
protected  void DataControlImpl.deactivate()
           
 

Uses of ActivationException in com.nitido.nimx.services.datacontrol.sim
 

Methods in com.nitido.nimx.services.datacontrol.sim that throw ActivationException
protected  void DataControlImpl.activate()
           
protected  void DataControlImpl.deactivate()
           
 

Uses of ActivationException in com.nitido.nimx.services.simbackend
 

Methods in com.nitido.nimx.services.simbackend that throw ActivationException
protected  void DataControlImpl.activate()
           
protected  void DataControlImpl.deactivate()
           
 


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.