|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Entity | |
---|---|
com.nitido.nim | This package contains NiM core classes. |
com.nitido.nimbox.http | This package contains the HttpServlet that acts as a Nimlet driver. |
com.nitido.nimbox.http.services.ad | The Advertisement Service for HTTP NiMBox. |
com.nitido.nimbox.http.services.ad.simple | The simple implementation of the AdService for HTTP NiMBox. |
com.nitido.nimbox.http.services.tracking | The Tracking Service for HTTP NiMBox. |
com.nitido.nimbox.http.services.tracking.file | The log file based implementation of the Tracking Service for HTTP NiMBox. |
com.nitido.nimx.services.brand | |
com.nitido.nimx.services.brand.ldap | |
com.nitido.nimx.services.brand.sysdefault | |
com.nitido.nimx.services.entity.generic | A generic implementation of EntityService implementation. |
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. |
Uses of Entity in com.nitido.nim |
---|
Subclasses of Entity in com.nitido.nim | |
---|---|
class |
ContainerEntity
The ContainerEntity class is the Entity that represents an authenticated Nimlet container. |
class |
User
The User class is an abstraction of a user in the NiM framework. |
Fields in com.nitido.nim declared as Entity | |
---|---|
protected Entity |
Nugget._entity
The entity this nugget is associated to. |
protected Entity |
NotificationMessage._from
The sender of this message. |
Methods in com.nitido.nim that return Entity | |
---|---|
Entity |
Nugget.getEntity()
This method returns the reference of the Entity object that owns this Nugget instance. |
Entity |
NiM.getEntity(Credential credential)
This method returns an instance of an Entity for the given credential. |
abstract Entity |
EntityService.getEntity(Credential credential)
This method returns an instance of an Entity associated to the given credential. |
Entity |
NotificationMessage.getSender()
|
Methods in com.nitido.nim with parameters of type Entity | |
---|---|
void |
NimletContainer.attachEntity(Entity e)
This method is used to attach an entity to the container. |
protected void |
EntityService.changeDataControlCredential(Entity entity,
Credential newDCCred,
boolean modBackend)
This is a redirector method to entity's changeDataControlCredential method. |
abstract void |
EntityService.changeIdentifyingCredential(Entity entity,
Credential newCred)
This method is used to change the identifying credential of an entity (this is usually called for changing the user's password). |
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. |
abstract void |
ProvisionService.deprovisionEntity(Credential targetCred,
Entity adminEntity)
This method will de-provision the entity associated to the given target credential. |
void |
NiM.deprovisionEntity(Credential targetCred,
Entity adminEntity)
This method will de-provision the entity associated to the given target credential. |
void |
NimletContainer.detachEntity(Entity e)
This method is used to detach an entity from the container. |
void |
Nimlet.execute(Entity entity,
NimletInput in,
NimletOutput out)
This method is called to handle an authenticated request from an entity. |
abstract java.util.List<Application> |
BrandService.getApplications(java.util.List<java.lang.String> appIDs,
Entity user)
Getting a list of application object based on the provided appIDs. |
abstract Brand |
BrandService.getBrand(NimletInput input,
Entity user)
Returns a brand object for this user. |
Brand |
NiM.getBrand(NimletInput input,
Entity user)
Get a brand object. |
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. |
abstract void |
ProvisionService.provisionEntity(EntityProvisionDescriptor descriptor,
Entity adminEntity)
This method is used to provision a new entity. |
void |
NiM.provisionEntity(EntityProvisionDescriptor descriptor,
Entity adminEntity)
This method is used to provision a new entity. |
void |
NiM.releaseEntity(Entity entity)
This method is used to signal to the NiM that the Entity is dying. |
protected abstract void |
EntityService.releaseEntity(Entity entity)
This method signals the EntityService implementation that the specified Entity is "dying". |
protected void |
EntityService.setEntityIdentifyingCredential(Entity entity,
Credential authCred)
This is a redirector method to allow the EntityService to change the IdentifyingCredential of the entity object. |
void |
NotificationMessage.setSender(Entity sender)
|
Constructors in com.nitido.nim with parameters of type Entity | |
---|---|
NotificationMessage(Entity sender,
java.util.List<Member> recipients,
java.lang.String subject)
Construct a new message with a list of Member objects as recipients. |
|
NotificationMessage(Entity sender,
java.lang.String recipient,
java.lang.String subject)
Construct a new message with a single recipient. |
Uses of Entity in com.nitido.nimbox.http |
---|
Methods in com.nitido.nimbox.http that return Entity | |
---|---|
Entity |
HttpNimletContainer.getEntityFromSession()
This method is used to get the Entity object from the HttpSession for the client. |
Methods in com.nitido.nimbox.http with parameters of type Entity | |
---|---|
void |
HttpNimletContainer.attachEntity(Entity entity)
|
void |
HttpNimletContainer.detachEntity(Entity entity)
|
Uses of Entity in com.nitido.nimbox.http.services.ad |
---|
Fields in com.nitido.nimbox.http.services.ad declared as Entity | |
---|---|
protected Entity |
SkinAdMap._entity
Reference to the Entity object making the request |
Methods in com.nitido.nimbox.http.services.ad with parameters of type Entity | |
---|---|
void |
ADTrackingRedirectNimlet.execute(Entity entity,
NimletInput input,
NimletOutput output)
|
abstract SkinAdMap |
NiMAdService.getAdMap(Entity entity,
NimletOutput output)
This method returns the set of Ads to be displayed for the given entity and skin. |
void |
SkinAdMap.setEntity(Entity entity)
|
Uses of Entity in com.nitido.nimbox.http.services.ad.simple |
---|
Methods in com.nitido.nimbox.http.services.ad.simple with parameters of type Entity | |
---|---|
SkinAdMap |
SimpleAdService.getAdMap(Entity entity,
NimletOutput output)
This method returns the Ad Mapping for the skin identified in the NimletOutput parameter. |
Uses of Entity in com.nitido.nimbox.http.services.tracking |
---|
Methods in com.nitido.nimbox.http.services.tracking with parameters of type Entity | |
---|---|
abstract void |
NiMTrackingService.recordEvent(Entity entity,
TrackingEvent event)
This methods should keep a record of the given event. |
Uses of Entity in com.nitido.nimbox.http.services.tracking.file |
---|
Methods in com.nitido.nimbox.http.services.tracking.file with parameters of type Entity | |
---|---|
void |
FileTrackingService.recordEvent(Entity entity,
TrackingEvent event)
This method records the given event using the NiM Logging Service. |
Uses of Entity in com.nitido.nimx.services.brand |
---|
Methods in com.nitido.nimx.services.brand with parameters of type Entity | |
---|---|
static java.lang.String |
BrandUtil.getLocale(NimletInput input,
Entity user)
Determine the locale from the input and the user. |
Uses of Entity in com.nitido.nimx.services.brand.ldap |
---|
Methods in com.nitido.nimx.services.brand.ldap with parameters of type Entity | |
---|---|
protected Brand |
BrandServiceImpl.doGetBrand(java.lang.String domainID,
java.lang.String brandID,
Entity user,
NimletInput input)
|
java.util.List<Application> |
BrandServiceImpl.getApplications(java.util.List<java.lang.String> brandApps,
Entity user)
Get a list of application objects for a given list of application IDs. |
Brand |
BrandServiceImpl.getBrand(NimletInput input,
Entity user)
Determines which brand to use based on HttpNimletInput and user's pref. |
protected Brand |
BrandServiceImpl.getDefaultBrand(java.lang.String domainID,
Entity user)
Get the system default brand. |
protected java.util.Map<java.lang.String,java.lang.String> |
BrandServiceImpl.getUserAppPrefs(Entity user,
java.lang.String appId)
Retrieve properties for a single application from the user space. |
protected java.util.List<java.lang.String> |
BrandServiceImpl.getUserApps(Entity user)
Get the list of application IDs configured in the user's profile. |
Uses of Entity in com.nitido.nimx.services.brand.sysdefault |
---|
Methods in com.nitido.nimx.services.brand.sysdefault with parameters of type Entity | |
---|---|
java.util.List<Application> |
BrandServiceImpl.getApplications(java.util.List<java.lang.String> appIDs,
Entity entity)
|
Brand |
BrandServiceImpl.getBrand(NimletInput input,
Entity user)
|
Uses of Entity in com.nitido.nimx.services.entity.generic |
---|
Methods in com.nitido.nimx.services.entity.generic that return Entity | |
---|---|
Entity |
EntityServiceImpl.getEntity(Credential credential)
This method returns an instance of an Entity associated to the given credential. |
Methods in com.nitido.nimx.services.entity.generic with parameters of type Entity | |
---|---|
void |
EntityServiceImpl.changeIdentifyingCredential(Entity entity,
Credential newCred)
This method is used to change the identifying credential of an entity (this is usually called when changing the user's password). |
void |
EntityServiceImpl.releaseEntity(Entity entity)
|
Uses of Entity in com.nitido.nimx.services.notification.channels |
---|
Methods in com.nitido.nimx.services.notification.channels with parameters of type Entity | |
---|---|
protected javax.mail.Transport |
EmailDeliveryChannel.connectSMTP(Entity entity)
Connect to to the SMTP server with the specified settings. |
protected java.lang.String |
EmailDeliveryChannel.getActualConfigProperty(Entity entity,
java.lang.String configKey)
This method return the actual value of a setting. |
protected void |
EmailDeliveryChannel.sendMessage(Entity entity,
javax.mail.Message msg,
javax.mail.Address[] addr)
Sends the message by opening a new new SMTP connection and using its sendMessage() method. |
Uses of Entity in com.nitido.nimx.services.nugget.simple |
---|
Methods in com.nitido.nimx.services.nugget.simple with parameters of type Entity | |
---|---|
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 Entity in com.nitido.nimx.services.simbackend |
---|
Methods in com.nitido.nimx.services.simbackend with parameters of type Entity | |
---|---|
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)
|
void |
ProvisionServiceImpl.deprovisionEntity(Credential targetCred,
Entity adminEntity)
|
void |
ProvisionServiceImpl.provisionEntity(EntityProvisionDescriptor descriptor,
Entity adminEntity)
This method is used to provision a new entity and stored in memory. |
|
Nitido NiM 2.5 Java API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1999-2009 Nitido Inc. Proprietary and Confidential. All Rights Reserved.