|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use PermissionDeniedException | |
---|---|
com.nitido.nim | This package contains NiM core classes. |
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 PermissionDeniedException in com.nitido.nim |
---|
Subclasses of PermissionDeniedException in com.nitido.nim | |
---|---|
class |
EntityReleasedException
The EntityReleasedException class is thrown when an entity operation (except (releasing a nugget) is attempted when the Entity object is already released. |
Methods in com.nitido.nim that throw PermissionDeniedException | |
---|---|
void |
Entity.addToCredentialSpace(java.lang.String key,
Credential value)
This method adds a new credential to the user space under the given key. |
void |
ContainerEntity.addToCredentialSpace(java.lang.String key,
Credential value)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.addToUserSpace(java.lang.String key,
java.io.Serializable value)
This method adds a new object to the user space of the entity. |
void |
ContainerEntity.addToUserSpace(java.lang.String key,
java.io.Serializable value)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.changeIdentifyingCredential(Credential newCred)
This method is used to replace the identifying credentials associated with the entity. |
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,
Credential credential)
This method always throw PermissionDeniedException because ContainerEntity has no privilege to create or access nuggets. |
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. |
java.lang.String[] |
Entity.getCredentialSpaceKeys()
This method returns all the keys currently available in the credential space. |
java.lang.String[] |
ContainerEntity.getCredentialSpaceKeys()
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
java.lang.String[] |
Entity.getCredentialSpaceKeys(java.lang.String startsWith)
This method returns all the credential keys currenlty available in the credential space whose value starts with the given prefix. |
java.lang.String[] |
ContainerEntity.getCredentialSpaceKeys(java.lang.String startsWith)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
java.util.Vector |
Entity.getFromCredentialSpace(java.lang.String key)
This method returns all the credentials associated with the given key. |
java.util.Vector |
ContainerEntity.getFromCredentialSpace(java.lang.String key)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
java.util.Vector |
Entity.getFromUserSpace(java.lang.String key)
This method returns all the objects associated with the given key. |
java.util.Vector |
ContainerEntity.getFromUserSpace(java.lang.String key)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
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. |
java.lang.String[] |
Entity.getUserSpaceKeys()
This method returns all the keys currently available in the user space. |
java.lang.String[] |
ContainerEntity.getUserSpaceKeys()
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
java.lang.String[] |
Entity.getUserSpaceKeys(java.lang.String startsWith)
This method returns all the object keys currenlty available in the user space whose value starts with the given prefix. |
java.lang.String[] |
ContainerEntity.getUserSpaceKeys(java.lang.String startsWith)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
Credential |
Entity.getValueFromCredentialSpace(java.lang.String key)
This method returns the first instance of the credential object associated to the given key. |
Credential |
ContainerEntity.getValueFromCredentialSpace(java.lang.String key)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
java.io.Serializable |
Entity.getValueFromUserSpace(java.lang.String key)
This method returns the first instance of the object associated with the given key. |
java.io.Serializable |
ContainerEntity.getValueFromUserSpace(java.lang.String key)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.modifyCredentialSpace(ModifierContainer container)
This method is used to make batch modifications to the credential space of the entity. |
void |
ContainerEntity.modifyCredentialSpace(ModifierContainer container)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.modifyUserSpace(ModifierContainer container)
This method makes batch modifications to user space of the entity. |
void |
ContainerEntity.modifyUserSpace(ModifierContainer container)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
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 |
Entity.removeFromCredentialSpace(java.lang.String key)
This method removes all the credentials that are associated to the given key from the credential space. |
void |
ContainerEntity.removeFromCredentialSpace(java.lang.String key)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.removeFromCredentialSpace(java.lang.String key,
Credential value)
This method removes the given key/credential pair from the credential space of the entity. |
void |
ContainerEntity.removeFromCredentialSpace(java.lang.String key,
Credential value)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.removeFromUserSpace(java.lang.String key)
This method removes all the objects that are associated to the given key from the user space. |
void |
ContainerEntity.removeFromUserSpace(java.lang.String key)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.removeFromUserSpace(java.lang.String key,
java.io.Serializable value)
This method removes the given key/value pair from the user space of the entity. |
void |
ContainerEntity.removeFromUserSpace(java.lang.String key,
java.io.Serializable value)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.replaceInCredentialSpace(java.lang.String key,
Credential value)
This method is used to store the given credential into the credential space under the given key. |
void |
ContainerEntity.replaceInCredentialSpace(java.lang.String key,
Credential value)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
void |
Entity.replaceInUserSpace(java.lang.String key,
java.io.Serializable value)
This method is used to store the given object into the user space under the given key. |
void |
ContainerEntity.replaceInUserSpace(java.lang.String key,
java.io.Serializable value)
This method always throw PermissionDeniedException because ContainerEntity has no access to credential space and user space. |
Uses of PermissionDeniedException in com.nitido.nimx.services.nugget.simple |
---|
Methods in com.nitido.nimx.services.nugget.simple that throw PermissionDeniedException | |
---|---|
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 PermissionDeniedException in com.nitido.nimx.services.simbackend |
---|
Methods in com.nitido.nimx.services.simbackend that throw PermissionDeniedException | |
---|---|
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 |
BackendStore.deprovisionEntity(Credential targetCred)
Deprovision the entity. |
void |
ProvisionServiceImpl.deprovisionEntity(Credential targetCred,
Entity adminEntity)
|
protected void |
BackendStore.provisionEntity(EntityProvisionDescriptor descriptor)
This method is used to provision a new entity and stored in memory. |
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.