Nitido Inc.

Uses of Class
com.nitido.nim.InitializationFailedException

Packages that use InitializationFailedException
com.nitido.nim This package contains NiM core classes. 
com.nitido.nimbox.http.services.ad The Advertisement Service for HTTP NiMBox. 
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.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.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.authentication.directory The implementation of AuthenticationService that uses the JNDI implementation of Nitido Eximius Directory library. 
com.nitido.nimx.services.authentication.dirpool The implementation of AuthenticationService that uses the Mozilla Netscape LDAP SDK's connection pool ability. 
com.nitido.nimx.services.authentication.sim A simulator implementation of AuthenticationService. 
com.nitido.nimx.services.brand.ldap   
com.nitido.nimx.services.brand.sysdefault   
com.nitido.nimx.services.classloader.simple An implementation of ClassLoaderService that uses the default ClassLoader of the JVM. 
com.nitido.nimx.services.configuration.file A ConfigurationService implementation that reads in the configuration from two files, one with default settings and one with local settings. 
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.dirpool.mozilla This package contains the implementation of DirPoolService that utilizes the Mozilla Netscape LDAP Java SDK library. 
com.nitido.nimx.services.entitlement.sim A simulator implementation of EntitlementService. 
com.nitido.nimx.services.entity.generic A generic implementation of EntityService implementation. 
com.nitido.nimx.services.eventmonitor.log4j A log4j implementation of EventMonitorService (do nothing). 
com.nitido.nimx.services.log.log4j A simple implementation of LogService (create Log4j based Logger). 
com.nitido.nimx.services.notification The main package of the NotificationService implementation and the stub. 
com.nitido.nimx.services.notification.channels   
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. 
com.nitido.nimx.services.uniqueid.ipdomain This UniqueIdService implementation generates identifiers that are guaranteed to be unique within a IP domain. 
com.nitido.nimx.services.valet This package contains the ValetService that provides the custodian service for holding resources that cannot be migrated to other servers in the same cluster. 
 

Uses of InitializationFailedException in com.nitido.nim
 

Methods in com.nitido.nim that throw InitializationFailedException
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.
protected  long BrandService.getLongProperty(java.lang.String confKey, boolean checkMin, long minValue)
          Retrieve a Long property from the system configuration.
 Nugget Entity.getNugget(java.lang.String nuggetName)
          This method returns a reference to the Nugget that is associated to the given nugget name.
protected  java.lang.String BrandService.getStringProperty(java.lang.String confKey)
          Retrieve a String property from the system configuration.
 void Nimlet.init(java.util.HashMap map)
          This method is called by the NimletContainer or NimletDriver to initialize the Nimlet.
protected abstract  void ClassLoaderService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void ProvisionService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void EntitlementService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void DataControlService.init(NiMKernel kernel, ConfigurationService confService)
           
protected  void NotificationService.init(NiMKernel kernel, ConfigurationService confService)
           
protected  void ConfigurationService.init(NiMKernel kernel, ConfigurationService confServ)
          This method throws UnsupportedOperationException.
protected abstract  void LogService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void AuthenticationService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void UniqueIdService.init(NiMKernel kernel, ConfigurationService confService)
           
protected  void BrandService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void NuggetService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void NiMKernelService.init(NiMKernel kernel, ConfigurationService confService)
          This method is used to initialize the kernel service.
protected abstract  void EventMonitorService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void EntityService.init(NiMKernel kernel, ConfigurationService confService)
           
protected abstract  void ConfigurationService.init(NiMKernel kernel, java.util.Map settings)
          This method is used to initialize the ConfigurationService.
 void Nugget.init(java.lang.String nuggetName, Entity entity, java.util.Hashtable settings)
          This method is the base initialization method that should be called by NuggetService after a Nugget has been instantiated successfully.
protected abstract  void Nugget.initImpl()
          This method is called by the init() method after the member variables _nuggetName, _entity and _settings are assigned.
 

Uses of InitializationFailedException in com.nitido.nimbox.http.services.ad
 

Methods in com.nitido.nimbox.http.services.ad that throw InitializationFailedException
 void ADTrackingRedirectNimlet.init(java.util.HashMap settings)
           
 

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

Methods in com.nitido.nimx.nuggets.extmail.real that throw InitializationFailedException
protected  void ExternalMailNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.helpdesk.dirpool that throw InitializationFailedException
protected  void HelpDeskNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.helpdesk.real that throw InitializationFailedException
protected  void HelpDeskNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.iplanetset.dirpool that throw InitializationFailedException
protected  void IPlanetSettingsNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.iplanetset.real that throw InitializationFailedException
protected  void IPlanetSettingsNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.iplanetset.stub that throw InitializationFailedException
protected  void IPlanetSettingsNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.iplanetset.userspace that throw InitializationFailedException
protected  void IPlanetSettingsNuggetImpl.initImpl()
           
 

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

Methods in com.nitido.nimx.nuggets.pab that throw InitializationFailedException
protected abstract  void PABNugget.initImpl()
          Used by NiM Nugget mechanism.
 

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

Methods in com.nitido.nimx.nuggets.pab.real that throw InitializationFailedException
protected  Directory PABNuggetImpl.connectRead()
           
protected  Directory PABNuggetImpl.connectWrite()
           
protected  void PABNuggetImpl.initImpl()
           
protected  void PABNuggetImpl.setupDirectory()
           
 

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

Methods in com.nitido.nimx.nuggets.wcap that throw InitializationFailedException
protected  void WcapNugget.initImpl()
           
 

Uses of InitializationFailedException in com.nitido.nimx.services.authentication.directory
 

Methods in com.nitido.nimx.services.authentication.directory that throw InitializationFailedException
protected  void AuthenticationServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is called by the NiMKernel to initialize the authentication service.
 

Uses of InitializationFailedException in com.nitido.nimx.services.authentication.dirpool
 

Methods in com.nitido.nimx.services.authentication.dirpool that throw InitializationFailedException
protected  void AuthenticationServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is called by the NiMKernel to initialize the AuthenticationService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.authentication.sim
 

Methods in com.nitido.nimx.services.authentication.sim that throw InitializationFailedException
protected  void AuthenticationServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used to initialize the service.
 

Uses of InitializationFailedException in com.nitido.nimx.services.brand.ldap
 

Methods in com.nitido.nimx.services.brand.ldap that throw InitializationFailedException
protected  void BrandServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
 

Uses of InitializationFailedException in com.nitido.nimx.services.brand.sysdefault
 

Methods in com.nitido.nimx.services.brand.sysdefault that throw InitializationFailedException
protected  void BrandServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
 

Uses of InitializationFailedException in com.nitido.nimx.services.classloader.simple
 

Methods in com.nitido.nimx.services.classloader.simple that throw InitializationFailedException
protected  void ClassLoaderServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the ClassLoaderService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.configuration.file
 

Methods in com.nitido.nimx.services.configuration.file that throw InitializationFailedException
protected  void ConfigurationServiceImpl.init(NiMKernel kernel, java.util.Map settings)
          This method is called by the NiMKernel to initialize the ConfigurationService.
 

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

Methods in com.nitido.nimx.services.datacontrol.cachedmap that throw InitializationFailedException
protected  void DataControlServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the kernel to initialize the DataControlService.
 

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

Methods in com.nitido.nimx.services.datacontrol.profilemap that throw InitializationFailedException
protected  void DataControlServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the kernel to initialize the DataControlService.
 

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

Methods in com.nitido.nimx.services.datacontrol.sim that throw InitializationFailedException
protected  void DataControlServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
 

Uses of InitializationFailedException in com.nitido.nimx.services.dirpool.mozilla
 

Methods in com.nitido.nimx.services.dirpool.mozilla that throw InitializationFailedException
protected  void DirPoolServiceImpl.fetchPoolSettings(java.lang.String confKey, java.lang.String tempValue)
           
protected  java.lang.Boolean DirPoolServiceImpl.getBooleanConfig(java.lang.String confKey, java.lang.Boolean defaultValue)
           
static DirPoolServiceImpl DirPoolServiceImpl.getInstance()
           
protected  int DirPoolServiceImpl.getIntConfig(java.lang.String confKey, int defaultValue)
           
protected  java.lang.Integer DirPoolServiceImpl.getIntegerConfig(java.lang.String confKey, java.lang.Integer defaultValue)
           
protected  long DirPoolServiceImpl.getLongConfig(java.lang.String confKey, long defaultValue)
           
protected  void DirPoolServiceImpl.init(NiM confService)
          This method is called by the NiMKernel to initialize the DirPoolService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.entitlement.sim
 

Methods in com.nitido.nimx.services.entitlement.sim that throw InitializationFailedException
protected  void EntitlementServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the EntitlementService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.entity.generic
 

Methods in com.nitido.nimx.services.entity.generic that throw InitializationFailedException
protected  void EntityServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used to initialize this implementation of the EntityService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.eventmonitor.log4j
 

Methods in com.nitido.nimx.services.eventmonitor.log4j that throw InitializationFailedException
protected  void EventMonitorServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the EventMonitor service.
 

Uses of InitializationFailedException in com.nitido.nimx.services.log.log4j
 

Methods in com.nitido.nimx.services.log.log4j that throw InitializationFailedException
protected  void LogServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the LogService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.notification
 

Methods in com.nitido.nimx.services.notification that throw InitializationFailedException
protected  void NotificationServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
 

Uses of InitializationFailedException in com.nitido.nimx.services.notification.channels
 

Methods in com.nitido.nimx.services.notification.channels that throw InitializationFailedException
 void DeliveryChannel.init(StatusTicketCache cache, ConfigurationService conf)
          Initializes the delivery channel by providing access to the status ticket cache and the configuration service.
 void EmailDeliveryChannel.init(StatusTicketCache cache, ConfigurationService conf)
           
 void StubEmailDeliveryChannel.init(StatusTicketCache cache, ConfigurationService conf)
           
 void SMSDeliveryChannel.init(StatusTicketCache cache, ConfigurationService conf)
           
protected  void EmailDeliveryChannel.loadProperties()
          Loads configuratioin properties.
protected  void StubEmailDeliveryChannel.loadProperties()
           
 

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

Methods in com.nitido.nimx.services.nugget.simple that throw InitializationFailedException
 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)
           
protected  void NuggetServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
 

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

Methods in com.nitido.nimx.services.simbackend that throw InitializationFailedException
 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)
           
protected  void EntitlementServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the EntitlementService.
protected  void NuggetServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
protected  void ClassLoaderServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the ClassLoaderService.
protected  void AuthenticationServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used to initialize the service.
protected  void ProvisionServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the NiMKernel to initialize the ProvisionService.
protected  void DataControlServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
          This method is used by the kernel to initialize the DataControlService.
 

Uses of InitializationFailedException in com.nitido.nimx.services.uniqueid.ipdomain
 

Methods in com.nitido.nimx.services.uniqueid.ipdomain that throw InitializationFailedException
protected  void UniqueIdServiceImpl.init(NiMKernel kernel, ConfigurationService confService)
           
 

Uses of InitializationFailedException in com.nitido.nimx.services.valet
 

Methods in com.nitido.nimx.services.valet that throw InitializationFailedException
protected  int ValetServiceImpl.getIntConfig(java.lang.String confKey, int defaultValue)
           
protected  long ValetServiceImpl.getLongConfig(java.lang.String confKey, long defaultValue)
           
protected  void ValetServiceImpl.init(NiM confService)
           
 


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.