Nitido Inc.

Uses of Class
com.nitido.nim.Nugget

Packages that use Nugget
com.nitido.nim This package contains NiM core classes. 
com.nitido.nimx.nuggets.extmail This package contains the ExtMailNugget and its' helper classes. 
com.nitido.nimx.nuggets.extmail.real The only implementation of ExtMailNugget. 
com.nitido.nimx.nuggets.helpdesk This package contains the Nugget that provide HelpDesk functionality for changing preference settings for other users on communication servers from Sun ONE (which was called iPlanet). 
com.nitido.nimx.nuggets.helpdesk.dirpool This implementation utilizes the DirPoolService to obtain the directory connections. 
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.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.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.pab.stub This PABNugget implementation stores all the data in memory. 
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.nugget.simple A simple implementation of NuggetService. 
com.nitido.nimx.services.simbackend This package contains classes used to simulate a backend data store. 
 

Uses of Nugget in com.nitido.nim
 

Subclasses of Nugget in com.nitido.nim
 class CachableNugget
          The super class of all CachableNugget.
 class NonCachableNugget
          The super class of NonCachableNugget.
 

Methods in com.nitido.nim that return Nugget
abstract  Nugget NuggetService.createNugget(Entity entity, java.lang.String nuggetName)
          This method is used to load and instantiate a Nugget of the given nuggetName.
abstract  Nugget NuggetService.createNugget(Entity entity, java.lang.String nuggetName, java.lang.String nuggetType, java.util.Hashtable settings)
          This method is used to load and instantiate a Nugget of the given type and for the given entity.
 Nugget Entity.createNugget(java.lang.String nuggetName, java.lang.String nuggetType, java.util.Hashtable nuggetSettings)
          This method creates a new nugget instance for the given nugget type with the given settings and will attach the nugget to the entity.
 Nugget ContainerEntity.createNugget(java.lang.String nuggetName, java.lang.String nuggetType, java.util.Hashtable settings)
          This method always throw PermissionDeniedException because ContainerEntity has no privilege to create or access nuggets.
 Nugget ContainerEntity.createNugget(java.lang.String nuggetName, java.lang.String nuggetType, java.util.Hashtable settings, Credential credential)
          This method always throw PermissionDeniedException because ContainerEntity has no privilege to create or access nuggets.
 Nugget Entity.getNugget(java.lang.String nuggetName)
          This method returns a reference to the Nugget that is associated to the given nugget name.
 Nugget ContainerEntity.getNugget(java.lang.String nuggetName)
          This method always throw PermissionDeniedException because ContainerEntity has no privilege to create or access nuggets.
 

Uses of Nugget in com.nitido.nimx.nuggets.extmail
 

Subclasses of Nugget in com.nitido.nimx.nuggets.extmail
 class ExternalMailNugget
          The ExternalMailNugget is a NiM nugget that abstracts access to external POP3 servers.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.extmail.real
 class ExternalMailNuggetImpl
          Actual implementation of ExternalMailNugget.
 

Uses of Nugget in com.nitido.nimx.nuggets.helpdesk
 

Subclasses of Nugget in com.nitido.nimx.nuggets.helpdesk
 class HelpDeskNugget
          HelpDeskNugget is responsible for accessing and modifying personal preference settings for the customer.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.helpdesk.dirpool
 class HelpDeskNuggetImpl
          HelpDeskNugget is responsible for accessing and modifying the personal preferences of other users for iPlanet/SunONE Web Technologies Servers that have been stored in a backend LDAP server.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.iplanetset
 class IPlanetSettingsNugget
          IPlanetSettingsNugget is responsible for accessing and modifying personal preference settings that may involve more than one iPlanet servers.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.iplanetset.dirpool
 class IPlanetSettingsNuggetImpl
          IPlanetSettingsNugget is responsible for accessing and modifying the personal preferences for iPlanet/SunONE Web Technologies Servers that have been stored in a backend LDAP server.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.javamail
 class JavaMailNugget
          The JavaMailNugget is a NiM nugget that abstracts access to IMAP and SMTP servers.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.javamail.real
 class JavaMailNuggetImpl
           
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.pab
 class PABNugget
          Personal Address Book Nugget provides services for accessing and modifying a user's address book.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.pab.real
 class PABNuggetImpl
          Personal Address Book Nugget provides services for accessing and modifying a user's address book.
 

Uses of Nugget in com.nitido.nimx.nuggets.pab.stub
 

Subclasses of Nugget in com.nitido.nimx.nuggets.pab.stub
 class PABNuggetStub
          Personal Address Book Nugget provides services for accessing and modifying a user's address book.
 

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

Subclasses of Nugget in com.nitido.nimx.nuggets.wcap
 class WcapNugget
          WcapNugget - A Nugget that wraps iPlanet Calendar Server Web Calendar Access Protocol (WCAP) commands.
 

Uses of Nugget in com.nitido.nimx.services.nugget.simple
 

Methods in com.nitido.nimx.services.nugget.simple that return Nugget
 Nugget NuggetServiceImpl.createNugget(Entity entity, java.lang.String nuggetName)
           
 Nugget NuggetServiceImpl.createNugget(Entity entity, java.lang.String nuggetName, java.lang.String nuggetType, java.util.Hashtable nuggetSettings)
           
 

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

Methods in com.nitido.nimx.services.simbackend that return Nugget
 Nugget NuggetServiceImpl.createNugget(Entity entity, java.lang.String nuggetName)
           
 Nugget NuggetServiceImpl.createNugget(Entity entity, java.lang.String nuggetName, java.lang.String nuggetType, java.util.Hashtable nuggetSettings)
           
 


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.