Uses of Class
com.ibm.itim.dataservices.model.DirectoryObject

Packages that use DirectoryObject
com.ibm.itim.apps.lifecycle Extends the com.ibm.itim.apps package to provide a remotable application programming interface for LifeCycle management. 
com.ibm.itim.apps.policy Extends the com.ibm.itim.apps package to provide a remotable application programming interface for Policy management. 
com.ibm.itim.apps.search Extends the com.ibm.itim.apps package to provide a remotable application programming interface to execute searches for objects managed by Identity Manager. 
com.ibm.itim.dataservices.model Provides a a low-level application programming interface for querying elements of the data model. 
com.ibm.itim.dataservices.model.domain Extends the com.ibm.itim.dataservices.model package to provide an application programming interface for querying the core elements of the data model. 
com.ibm.itim.dataservices.model.domain.access Extends the com.ibm.itim.dataservices.model package to provide an application programming interface for querying group/access elements of the data model. 
com.ibm.itim.dataservices.model.pim Extends the com.ibm.itim.dataservices.model package to provide a remotable application programming interface for Shared Access Module objects. 
com.ibm.itim.dataservices.model.policy   
com.ibm.itim.dataservices.model.policy.recert   
com.ibm.itim.dataservices.model.system Extends the com.ibm.itim.dataservices.model package to provide an application programming interface for querying the system specific elements of the data model. 
com.ibm.itim.fesiextensions Provides classes for working with FESI extensions. 
com.ibm.itim.remoteservices.provider Provides the interfaces and classes necessary to write a custom service provider that remote services will use. 
 

Uses of DirectoryObject in com.ibm.itim.apps.lifecycle
 

Methods in com.ibm.itim.apps.lifecycle with parameters of type DirectoryObject
 Request LifecycleManager.executeObjectOperation(DirectoryObject managedObject, java.lang.String operationName, java.lang.Object[] args)
          Executes an operation on a specific object in the provisioning platform
 

Uses of DirectoryObject in com.ibm.itim.apps.policy
 

Subclasses of DirectoryObject in com.ibm.itim.apps.policy
 class ProvisioningPolicy
          This class is the value object for the provisioning policy.
 

Uses of DirectoryObject in com.ibm.itim.apps.search
 

Methods in com.ibm.itim.apps.search that return types with arguments of type DirectoryObject
 java.util.Collection<DirectoryObject> SearchResultsMO.getPage(int pageNo)
          Returns the specified page of the result set.
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model
 

Methods in com.ibm.itim.dataservices.model that return DirectoryObject
 DirectoryObject DirectoryObjectEntity.getDirectoryObject()
          Returns the DirectoryObject value object that holds the attributes of this object.
 

Methods in com.ibm.itim.dataservices.model with parameters of type DirectoryObject
static DirectoryObjectEntity DirectoryObjectEntity.getEntity(DirectoryObject dirObject)
          Returns the parent of the current object.
 void DirectoryObjectEntity.initialize(DirectoryObject dirObject)
           
 void DirectoryObjectEntity.initialize(ObjectProfile profile, DirectoryObject dirObject)
           
 void DirectoryObjectEntity.update(DirectoryObject updObject)
          Deprecated. since 5.0, please use update()
 

Constructors in com.ibm.itim.dataservices.model with parameters of type DirectoryObject
DirectoryObjectEntity(DirectoryObject dirObject)
          Creates a DirectoryObjectEntity representing an entity in directory server.
DirectoryObjectEntity(ObjectProfile profile, DirectoryObject dirObject)
          Creates a DirectoryObjectEntity representing an entity in directory server.
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model.domain
 

Subclasses of DirectoryObject in com.ibm.itim.dataservices.model.domain
 class Account
          Value Object class that holds the attribute information of an account in the data model.
 class AdminDomain
          Value Object class that holds the attribute information of an administrative domain in the data model.
 class AgentOperation
          Represents
 class BusinessPartnerOrg
          Value Object class that holds the attribute information of a business partner organization in the data model.
 class BusinessUnit
          Value Object class that holds the attribute information of a business unit in the data model.
 class ComplianceIssue
          Represents a compliance issue, or policy violiation.
 class DirectorySystem
          Value Object class that holds the the system (tenant) wide configuration settings.
 class DynamicRole
          Value Object class that holds the attribute information of a dynamic role in the data model.
 class ExtendedPerson
          This class extends Person class with ownership type information.
 class Group
          This is the value object for the service group.
 class HostedService
          Value Object class that holds the attribute information of a hosted service in the data model.
 class Location
          Value Object class that holds the attribute information of a location in the data model.
 class Organization
          Value Object class that holds the attribute information of an organization in the data model.
 class OrganizationalContainer
          Value Object class that holds the attribute information of an organizational container in the data model.
 class OrganizationalUnit
          Value Object class that holds the attribute information of an organizational unit in the data model.
 class Person
          Value Object class that holds the attribute information of a person (identity) in the data model.
 class Role
          Value Object class that holds the attribute information of a role in the data model.
 class Service
          Value Object class that holds the attribute information of a service in the data model.
 class SupportingDataObject
          Class encapsulates attributes for a service supporting data entity.
 

Methods in com.ibm.itim.dataservices.model.domain with parameters of type DirectoryObject
 DirectoryObjectEntity ServiceModel.addSupportingData(AttributeValues rdn, DirectoryObject directoryObject)
          Add a supporting data entry to the enrole data store.
 void RoleEntity.update(DirectoryObject updObject)
          Deprecated. please use update()
 

Constructors in com.ibm.itim.dataservices.model.domain with parameters of type DirectoryObject
AccountEntity(DirectoryObject account)
          Constructs an AccountEntity, taking a DirectoryObject as the parameter.
AdminDomainEntity(DirectoryObject domain)
          Constructs an AdminDomainEntity, taking a DirectoryObject as parameter.
BusinessPartnerEntity(DirectoryObject person)
          Constructs a BusinessPartnerEntity with a DirectoryObject.
BusinessPartnerOrgEntity(DirectoryObject bpo)
          Constructs a BusinessPartnerOrgEntity, taking a DirectoryObject as the parameter.
BusinessUnitEntity(DirectoryObject bu)
          Constructs a BusinessUnitEntity, taking a DirectoryObject as the parameter.
DirectorySystemEntity(DirectoryObject dirObj)
          Constructs an DirectorySystemEntity with a value object.
DynamicRole(DirectoryObject dirObj)
          Copy Constructor
DynamicRoleEntity(DirectoryObject dynamicRole)
          Constructs a DynamicRoleEntity, with a DirectoryObject.
GroupEntity(DirectoryObject group)
          Constructs a GroupEntity with a Group value object.
HostedServiceEntity(DirectoryObject service)
          Constructs a HostedServiceEntity with a DirectoryObject.
OrganizationEntity(DirectoryObject org)
          Constructs an OrganizationEntity with the DirectoryObject.
PersonEntity(DirectoryObject person)
          Constructs a PersonEntity, taking a DirectoryObject as the parameter.
Role(DirectoryObject dirObj)
          Copy constructor for directory object
RoleEntity(DirectoryObject role)
          Constructs a Role with a DirectoryObject.
ServiceEntity(DirectoryObject dirObject)
          Constructs a ServiceEntity with a value object.
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model.domain.access
 

Constructors in com.ibm.itim.dataservices.model.domain.access with parameters of type DirectoryObject
ProvisioningConfiguration(DirectoryObject obj)
          A protected constructor.
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model.pim
 

Subclasses of DirectoryObject in com.ibm.itim.dataservices.model.pim
 class Credential
          This is a value Object class that holds the attribute information of a credential in the data model.
 class CredentialLease
          This value Object class holds the attribute information of a credential lease in the data model.
 class CredentialPool
          This value Object class holds the attribute information of a credential pool in the data model.
 class SharedAccessPolicy
          Value Object class that holds the attribute information of a shared access policy in the data model.
 

Constructors in com.ibm.itim.dataservices.model.pim with parameters of type DirectoryObject
Credential(DirectoryObject dirObj)
          This is a copy constructor.
CredentialLease(DirectoryObject dirObj)
          This is a copy constructor for directory object
CredentialPool(DirectoryObject dirObj)
          Copy constructor for directory object
SharedAccessPolicy(DirectoryObject dirObj)
          Copy constructor for directory object
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model.policy
 

Subclasses of DirectoryObject in com.ibm.itim.dataservices.model.policy
 class DirectoryPolicy
          This class provides a base implementation of all policy value objects.
 class ScopedPolicy
          This class provides a base implementation for all policy value objects that support scoping capabilities.
 class SeparationOfDutyPolicy
          This class is the value object for the separation of duty policy entity.
 class SeparationOfDutyRule
          This class represents a Separation Of Duty Policy Rule.
 class ServicePolicy
          This class is a specialization of the ScopedPolicy class that provides the base value object of all ServicePolicyEntities.
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model.policy.recert
 

Subclasses of DirectoryObject in com.ibm.itim.dataservices.model.policy.recert
 class RecertificationPolicy
          This class provides a base implementation for the recertification policy value objects that support the scoping capabilities.
 

Uses of DirectoryObject in com.ibm.itim.dataservices.model.system
 

Subclasses of DirectoryObject in com.ibm.itim.dataservices.model.system
 class SystemRole
          Value Object class that holds the attribute information of a system role (group) in the data model.
 class SystemUser
          Value Object class that holds the attribute information of a system (platform) user in the data model.
 

Constructors in com.ibm.itim.dataservices.model.system with parameters of type DirectoryObject
SystemRoleEntity(DirectoryObject sysRole)
          Constructs a SystemRoleEntity with a DirectoryObject.
SystemUserEntity(DirectoryObject systemUser)
          Constructs a SystemUserEntity with a DirectoryObject.
 

Uses of DirectoryObject in com.ibm.itim.fesiextensions
 

Methods in com.ibm.itim.fesiextensions with parameters of type DirectoryObject
static FESI.jslib.JSObject JSDirectoryObjectFactory.createDirectoryObject(FESI.jslib.JSGlobalObject go, DirectoryObject directoryObject)
          Deprecated. Within the context of the global JS object, create a DirectoryObject JS object.
static FESI.jslib.JSObject JSDirectoryObjectFactory.createDirectoryObject(FESI.jslib.JSGlobalObject go, FESI.jslib.JSObject parent, java.lang.String name, DirectoryObject directoryObject)
          Deprecated. Within the context of the global JS object, create a named DirectoryObject JS object.
static com.ibm.itim.fesiextensions.wrapper.DirectoryObjectWrapper JSDirectoryObjectFactory.createDirectoryObjectWrapper(DirectoryObject directoryObject)
          Deprecated. factory method for creating DirectoryObjectWrappers of the correct subclass This methods can be used by extensions that need to return directory object wrappers from extension methods.
 

Uses of DirectoryObject in com.ibm.itim.remoteservices.provider
 

Methods in com.ibm.itim.remoteservices.provider that return DirectoryObject
 DirectoryObject UnsolicitedEventProcessor.lookup(Service service, java.lang.String filter)
          Lookup an object in the data store.
 



IBM Security Identity Manager 6.0.0
© Copyright International Business Machines Corporation 2007, 2012. All rights reserved. US Government Users Restricited Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.