public interface IBaseDirectoryModule extends IModule
Code sample :
// creation of a directory module object
IBaseDirectoryModule directoryModule = Modules.getDirectoryModule();
try
{
}
finally
{
// uninitialize the module
Modules.releaseModule(directoryModule);
}
IUser
,
IGroup
,
ILocalization
,
IOrganization
Modifier and Type | Method and Description |
---|---|
void |
addChild(IGroup child,
IGroup group)
Adds a child group.
|
void |
addLocalizationScope(ILocalizationScopeSupport localizationScopeSupport,
ILocalization localization,
boolean heritable)
Add localizationScope to the localizationScopeSupport object
|
void |
addMember(IUser user,
IGroup group)
Adds a user to a group.
|
void |
addOrganizationScope(IUser user,
IOrganization organization,
boolean heritable)
Add OrganizationScope to the User object
|
void |
breakLocalizationScopeInheritance(ILocalizationScopeSupport localizationScopeSupport)
break the localizationScope inheritance for the localizationScopeSupport object
|
void |
breakOrganizationScopeInheritance(IUser user)
break the organizationScope inheritance for the user object
|
IAttachment |
createAttachment(IContext context,
File file)
Allows to create an
IAttachment object from a java.io.File object. |
IAttachment |
createAttachment(IContext context,
File file,
boolean canBeRemoved)
Allows to create an
IAttachment object from a java.io.File object. |
IAttachment |
createAttachment(IContext context,
String fileName,
byte[] bytes) |
IAttachment |
createAttachment(IContext context,
String fileName,
InputStream input)
Allows to create an
IAttachment object from a file name and an input stream. |
IAttribute |
createAttribute(String name,
int type,
Object value)
Deprecated.
use getExtendedAttributes method instead.
|
IGroup |
createGroup(IContext context,
IGroup group,
String label)
Allows to create a child group.
|
IGroup |
createGroup(IContext context,
IGroup group,
String name,
String label)
Allows to create a child group.
|
IGroup |
createGroup(IContext context,
IOrganization organization,
String label)
Deprecated.
use createGroup( IContext context, IOrganization organization, String name, String label ) method instead.
|
IGroup |
createGroup(IContext context,
IOrganization organization,
String name,
String label)
Allows to create a group.
|
ILocalization |
createLocalization(IContext context,
ILocalization localization,
String label)
Deprecated.
: use createLocalization( IContext context, ILocalization localization, String name, String label ) method instead.
|
ILocalization |
createLocalization(IContext context,
ILocalization localization,
String name,
String label)
Allows to create a child localization.
|
ILocalization |
createLocalization(IContext context,
String label)
Deprecated.
: use createLocalization( IContext context, ILocalization localization, String label ) method instead.
|
ILocalization |
createLocalization(IContext context,
String name,
String label)
Allows to create a localization at the root level.
|
IOrganization |
createOrganization(IContext context,
IOrganization organization,
String label)
Deprecated.
: use createOrganization( IContext context, IOrganization organization, String name, String label ) method instead.
|
IOrganization |
createOrganization(IContext context,
IOrganization organization,
String name,
String label)
Allows to create a child organization.
|
IOrganization |
createOrganization(IContext context,
String label)
Deprecated.
: use createOrganization( IContext context, String name, String label ) method instead.
|
IOrganization |
createOrganization(IContext context,
String name,
String label)
Allows to create an organization at the root level.
|
IProfile |
createSystemProfile(IContext context,
String name)
Creates a
IProfile . |
IUser |
createUser(IContext context,
String login,
String password,
IOrganization organization)
Allows to create a user into an organization.
|
Collection<? extends IGroup> |
getAllChildren(IGroup group)
Retrieves all the children of a specified group object.
|
Collection<? extends IUser> |
getAllMembers(IGroup group)
Retrieves all the members of the group.
|
Collection<? extends IGroup> |
getAllParents(IGroup group)
Retrieves all the parents of a specified group object.
|
Collection<? extends IGroup> |
getAllParents(IUser user)
Retrieves all the parents of a specified user.
|
ICatalog |
getCatalog()
Gets the extended attributes catalog
|
Collection<? extends IGroup> |
getChildren(IGroup group)
Retrieves the children of a specified group object.
|
IDirectoryTransformer |
getDirectoryTransformer()
Gets a directory transformer.
|
IElement |
getElement(Object object)
Retrieves an
IElement object from an object. |
IProtocolSupport |
getElementByProtocolURI(String protocolURI)
Gets an
IElement object which implements IProtocolSupport interface. |
IGroup |
getGroup(IContext context,
IOrganization organization,
String name)
Retrieves a group by its system name on an organization scope.
|
IGroup |
getGroup(IContext context,
String name)
Deprecated.
The system name is not unique on the server scope anymore. You should pass the parent
IOrganization object.
Use the getGroup( IContext context, IOrganization organization, String name ) method instead. |
IGroup |
getGroup(IStorageKey key)
Retrieves a group object by its
IStorageKey object. |
IGroup |
getGroup(Object object)
Deprecated.
use getGroup( IStorageKey ) instead
|
ILocalization |
getLocalization(IContext context,
ILocalization parent,
String name)
Deprecated.
use getLocalization( IContext context, String name ) method instead.
|
ILocalization |
getLocalization(IContext context,
String name)
Retrieves a localization by its system name.
|
ILocalization |
getLocalization(IStorageKey key)
Retrieves a localization object by its
IStorageKey object. |
ILocalization |
getLocalization(Object object)
Deprecated.
use getLocalization( IStorageKey ) instead
|
ILocalization |
getLocalizationByPathLabel(IContext context,
String path)
Retrieves a localization by its path.
|
String |
getLocalizationPathLabel(ILocalization localization)
Generate path label of the localization
"/" in label will replaced by "\\/"
|
Collection<? extends ILocalization> |
getLocalizations(IContext context)
Retrieves all the localizations.
|
Collection<? extends ILocalization> |
getLocalizations(IContext context,
ILocalization parent)
Retrieves the localizations of a
ILocalization object. |
Collection<? extends IDirectoryLocalizationScope> |
getLocalizationScopes(ILocalizationScopeSupport localizationScopeSupport)
get the localizationScopes for the localizationScopeSupport object
|
Collection<? extends IUser> |
getMembers(IGroup group)
Retrieves the members of the group.
|
IOrganization |
getOrganization(IContext context,
IOrganization parent,
String name)
Deprecated.
: use getOrganization(IContext, String) method instead.
|
IOrganization |
getOrganization(IContext context,
String name)
Retrieves an organization by its system name (the system name is unique on the server).
|
IOrganization |
getOrganization(IStorageKey key)
Retrieves an organization by its
IStorageKey object. |
IOrganization |
getOrganization(Object object)
Deprecated.
use getOrganization( IStorageKey ) instead
|
IOrganization |
getOrganizationByPathLabel(IContext context,
String path)
Retrieves an organization by its path.
|
String |
getOrganizationPathLabel(IOrganization organization)
Generate path label of the organization
"/" in label will replaced by "\\/"
|
Collection<? extends IOrganization> |
getOrganizations(IContext context)
Retrieves all the organizations.
|
Collection<? extends IOrganization> |
getOrganizations(IContext context,
IOrganization parent)
Retrieves the organizations of a specified
IOrganization object. |
Collection<? extends IDirectoryOrganizationScope> |
getOrganizationScopes(IUser user)
Gets the OrganizationScope for the User object
|
Collection<? extends IGroup> |
getParents(IGroup group)
Retrieves the direct parents of a specified group object.
|
Collection<? extends IGroup> |
getParents(IUser user)
Retrieves the parents of a specified user.
|
IResourceDefinition |
getResourceDefinition(IContext context,
String name)
Gets an extended attributes table
|
ISearchController |
getSearchController() |
ISearchController |
getSearchController(IConnectionDefinition connectionDefinition)
Gets a search controller object by specifying a
ConnectionDefinition object. |
ISearchController |
getSearchController(IDataSourceReference reference)
Gets a search controller object by specifying a
IDataSourceReference object. |
ISearchController |
getSearchController(IJdbcReference reference)
Deprecated.
use getSearchController( IConnectionDefinition connectionDefinition ) method instead.
|
ISecurityController |
getSecurityController(ISecuritySupport securitySupport)
Gets a security controller to manipulate the rights on a specified object.
|
IProfile |
getSystemProfile(IContext context,
String name)
Retrieves a system
IProfile object by its system name. |
Collection<? extends IProfile> |
getSystemProfiles(IContext context)
Retrieves a collection of system
IProfile objects. |
ITransformer |
getTransformer()
Gets a transformer.
|
IUser |
getUser(IStorageKey key)
Retrieves a user object by its
IStorageKey object. |
IUser |
getUser(Object object)
Deprecated.
use getUser( IStorageKey ) instead
|
IUser |
getUserByLogin(String login)
Retrieves a user from its login.
|
Collection<? extends IUser> |
getUsers(IContext context)
Retrieves all the users.
|
Collection<? extends IUser> |
getUsers(IContext context,
ILocalization localization)
Retrieves all the users of a specified localization.
|
Collection<? extends IUser> |
getUsers(IContext context,
IOrganization organization)
Retrieves all the users of a specified organization.
|
boolean |
isChildOf(IGroup child,
IGroup parent,
boolean recursive)
Checks if the group is child of another group.
|
boolean |
isLocalizationScopeInherited(ILocalizationScopeSupport localizationScopeSupport)
Checks if the localization scope is inherited
|
boolean |
isMemberOf(IUser user,
IGroup group,
boolean recursive)
Checks if a user is member of a group.
|
boolean |
isOrganizationScopeInherited(IUser user)
is organizationScope inheritance
|
void |
removeChild(IGroup child,
IGroup group)
Removes a child group object.
|
void |
removeLocalizationScope(ILocalizationScopeSupport localizationScopeSupport,
IDirectoryLocalizationScope directoryLocalizationScope)
remove the localizationScope to the localizationScopeSupport object
|
void |
removeMember(IUser user,
IGroup group)
Removes a user from a group.
|
void |
removeOrganizationScope(IUser user,
IDirectoryOrganizationScope directoryOrganizationScope)
Removes the directoryOrganizationScope to the user's OrganizationScope
|
void |
restoreLocalizationScopeInheritance(ILocalizationScopeSupport localizationScopeSupport)
restore the localizationScope inheritance for the localizationScopeSupport object
|
void |
restoreOrganizationScopeInheritance(IUser user)
restore the organizationScope inheritance for the user object
|
beginTransaction, beginTransaction, commitTransaction, commitTransaction, convertId, findNativeClass, generateSystemName, getAnonymous, getAnonymousContext, getContext, getContext, getContextByLogin, getElementFromExternalElement, getExternalElement, getExternalElement, getLoggedOnUser, getLoggedOnUserContext, getLoggedOnUserLanguage, getProtocolPath, getProtocolPath, getProtocolURI, getProtocolURI, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getSysadmin, getSysadminContext, getTranslation, getTranslationForLanguage, getTranslationKey, initialize, isTransactionActive, rollbackTransaction, rollbackTransaction, setTransactionTimeout, unInitialize
Collection<? extends IOrganization> getOrganizations(IContext context) throws DirectoryModuleException
context
- The execution context.IOrganization
objects.DirectoryModuleException
- default module exception.Collection<? extends IOrganization> getOrganizations(IContext context, IOrganization parent) throws DirectoryModuleException
IOrganization
object.context
- The execution context.parent
- The parent IOrganization
object.IOrganization
objects.DirectoryModuleException
- default module exception.@Deprecated IOrganization createOrganization(IContext context, String label) throws DirectoryModuleException
context
- The execution context.label
- The label of the organization. Be aware the system name of the organization will be generated.IOrganization
object.DirectoryModuleException
- default module exception.IOrganization createOrganization(IContext context, String name, String label) throws DirectoryModuleException
context
- The execution context.name
- The system name of the organization.label
- The label of the organization. Be aware the system name of the organization will be generated.IOrganization
object.DirectoryModuleException
- default module exception.@Deprecated IOrganization createOrganization(IContext context, IOrganization organization, String label) throws DirectoryModuleException
context
- The execution context.organization
- The parent IOrganization
object.label
- The label of the organization. Be aware the system name of the organization will be generated.IOrganization
objectDirectoryModuleException
- default module exception.IOrganization createOrganization(IContext context, IOrganization organization, String name, String label) throws DirectoryModuleException
context
- The execution context.organization
- The parent IOrganization
object.name
- The system name of the organization.label
- The label of the organization. Be aware the system name of the organization will be generated.IOrganization
object.DirectoryModuleException
- default module exception.IOrganization getOrganization(IContext context, String name) throws DirectoryModuleException
context
- The execution context.name
- The system name of the organization.IOrganization
objectDirectoryModuleException
- default module exception.@Deprecated IOrganization getOrganization(IContext context, IOrganization parent, String name) throws DirectoryModuleException
context
- The execution context.parent
- The parent IOrganization
object.name
- The system name of the organization.IOrganization
object.DirectoryModuleException
- default module exception.IOrganization getOrganizationByPathLabel(IContext context, String path) throws DirectoryModuleException
context
- The execution context.path
- The path built from the labels.IOrganization
object.DirectoryModuleException
- default module exception.IOrganization getOrganization(IStorageKey key) throws DirectoryModuleException
IStorageKey
object.key
- The storage key object.IOrganization
object.DirectoryModuleException
- default module exception.Collection<? extends ILocalization> getLocalizations(IContext context) throws DirectoryModuleException
context
- The execution context.ILocalization
objects.DirectoryModuleException
- default module exception.Collection<? extends ILocalization> getLocalizations(IContext context, ILocalization parent) throws DirectoryModuleException
ILocalization
object.context
- The execution context.parent
- The parent ILocalization
object.ILocalization
objects.DirectoryModuleException
- default module exception.@Deprecated ILocalization createLocalization(IContext context, String label) throws DirectoryModuleException
context
- The execution context.label
- The label of the localization. Be aware the system name will be generated automatically.ILocalization
object.DirectoryModuleException
- default module exception.ILocalization createLocalization(IContext context, String name, String label) throws DirectoryModuleException
context
- The execution context.name
- The system name of the localization.label
- The label of the localization.ILocalization
object.DirectoryModuleException
- default module exception.@Deprecated ILocalization createLocalization(IContext context, ILocalization localization, String label) throws DirectoryModuleException
context
- The execution context.localization
- The parent ILocalization
object.label
- The label of the localization. Be aware the system name will be generated automatically.ILocalization
object.DirectoryModuleException
- default module exception.ILocalization createLocalization(IContext context, ILocalization localization, String name, String label) throws DirectoryModuleException
context
- The execution context.localization
- The parent ILocalization
object.name
- The system name of the localization.label
- The label of the localization.ILocalization
object.DirectoryModuleException
- default module exception.@Deprecated ILocalization getLocalization(IContext context, ILocalization parent, String name) throws DirectoryModuleException
context
- The execution context.parent
- The parent ILocalization
object.name
- The system name of the localization.ILocalization
object.DirectoryModuleException
- default module exception.ILocalization getLocalization(IContext context, String name) throws DirectoryModuleException
context
- The execution context.name
- The system name of the localization.ILocalization
object.DirectoryModuleException
- default module exception.ILocalization getLocalizationByPathLabel(IContext context, String path) throws DirectoryModuleException
context
- The execution context.path
- The path of the localization built from labels.ILocalization
object.DirectoryModuleException
- default module exception.ILocalization getLocalization(IStorageKey key) throws DirectoryModuleException
IStorageKey
object.key
- The IStorageKey
object.ILocalization
object.DirectoryModuleException
- default module exception.@Deprecated IGroup createGroup(IContext context, IOrganization organization, String label) throws DirectoryModuleException
context
- The execution context.organization
- The organization object.label
- The label of the group. Be aware the system name will be automatically generated.IGroup
object.DirectoryModuleException
- default module exception.IGroup createGroup(IContext context, IOrganization organization, String name, String label) throws DirectoryModuleException
context
- The execution context.organization
- The organization object.name
- The system name of the group.label
- The label of the group.IGroup
object.DirectoryModuleException
- default module exception.IGroup createGroup(IContext context, IGroup group, String label) throws DirectoryModuleException
context
- The execution context.group
- The parent group.label
- The label of the group. Be aware the system name will be generated automatically.IGroup
object.DirectoryModuleException
- default module exception.IGroup createGroup(IContext context, IGroup group, String name, String label) throws DirectoryModuleException
context
- The execution context.group
- The parent group.name
- The system name of the group.label
- The label of the group.IGroup
object.DirectoryModuleException
- default module exception.@Deprecated IGroup getGroup(IContext context, String name) throws DirectoryModuleException
IOrganization
object.
Use the getGroup( IContext context, IOrganization organization, String name ) method instead.context
- The execution context.name
- The system name of the group.IGroup
object.DirectoryModuleException
- default module exception.IGroup getGroup(IContext context, IOrganization organization, String name) throws DirectoryModuleException
context
- The execution context.organization
- The parent IOrganization
object.name
- The system name of the group.IGroup
object.DirectoryModuleException
- default module exception.IGroup getGroup(IStorageKey key) throws DirectoryModuleException
IStorageKey
object.key
- The IStorageKey
object.IGroup
object.DirectoryModuleException
- default module exception.IUser createUser(IContext context, String login, String password, IOrganization organization) throws DirectoryModuleException
context
- The execution context.login
- The login of the userpassword
- The password of the userorganization
- The parent IOrganization
object.IUser
object.DirectoryModuleException
- default module exception.Collection<? extends IUser> getUsers(IContext context)
context
- The execution context.IUser
objects.Collection<? extends IUser> getUsers(IContext context, IOrganization organization)
context
- The execution context.organization
- The IOrganization
object.IUser
objects.Collection<? extends IUser> getUsers(IContext context, ILocalization localization)
context
- The execution context.localization
- The ILocalization
object.IUser
objects.IUser getUserByLogin(String login)
login
- The login of the user.IUser
object.IUser getUser(IStorageKey key)
IStorageKey
object.key
- The IStorageKey
object.IUser
object.DirectoryModuleException
- default module exception.IProfile createSystemProfile(IContext context, String name) throws ModuleException
IProfile
.context
- The execution context.name
- The system name of the IProfile
to be created.IProfile
object.ModuleException
- default module exception.IProfile getSystemProfile(IContext context, String name) throws ModuleException
IProfile
object by its system name.context
- The execution context.name
- The system name of the role.IProfile
object.ModuleException
- default module exception.Collection<? extends IProfile> getSystemProfiles(IContext context) throws ModuleException
IProfile
objects.context
- The execution context.IProfile
objects.ModuleException
- default module exception.@Deprecated IAttribute createAttribute(String name, int type, Object value)
name
- The name of the attribute.type
- The type of the attribute. Check the IAttribute.IType
interface.value
- The associated value to the attribute.IAttribute
object.@Deprecated IOrganization getOrganization(Object object) throws DirectoryModuleException
object
- Any object of the following type:
IOrganization
object.DirectoryModuleException
- default module exception.@Deprecated ILocalization getLocalization(Object object) throws DirectoryModuleException
object
- Any object of the following type:
ILocalization
object.DirectoryModuleException
- default module exception.@Deprecated IGroup getGroup(Object object) throws DirectoryModuleException
object
- Any object of the following type:
IGroup
object.DirectoryModuleException
- default module exception.@Deprecated IUser getUser(Object object) throws DirectoryModuleException
object
- Any object of the following type:
IUser
object.DirectoryModuleException
- default module exception.IElement getElement(Object object) throws DirectoryModuleException
IElement
object from an object.object
- Any object of the following type:
IElement
object.DirectoryModuleException
- default module exception.void addChild(IGroup child, IGroup group) throws DirectoryModuleException
child
- The child group.group
- The parent group.DirectoryModuleException
- default module exception.void removeChild(IGroup child, IGroup group) throws DirectoryModuleException
child
- The child group.group
- The parent group.DirectoryModuleException
- default module exception.boolean isChildOf(IGroup child, IGroup parent, boolean recursive)
child
- The child group.parent
- The parent group.recursive
- if true checks recursively.Collection<? extends IGroup> getParents(IGroup group)
group
- The group to search for.IGroup
objects.Collection<? extends IGroup> getAllParents(IGroup group)
group
- The group to search for.IGroup
objects.Collection<? extends IGroup> getChildren(IGroup group)
group
- The group to search for.IGroup
objects.Collection<? extends IGroup> getAllChildren(IGroup group)
group
- The group to search for.IGroup
objects.void addMember(IUser user, IGroup group) throws DirectoryModuleException
user
- The user object to add.group
- The parent group.DirectoryModuleException
- default module exception.void removeMember(IUser user, IGroup group) throws DirectoryModuleException
user
- The user object to add.group
- The parent group.DirectoryModuleException
- default module exception.boolean isMemberOf(IUser user, IGroup group, boolean recursive)
user
- The usergroup
- The grouprecursive
- if true checks recursively.Collection<? extends IGroup> getParents(IUser user)
user
- The user to search for.IGroup
objects.Collection<? extends IGroup> getAllParents(IUser user)
user
- The user to search for.IGroup
objects.Collection<? extends IUser> getMembers(IGroup group)
group
- The group.IUser
objects.Collection<? extends IUser> getAllMembers(IGroup group)
group
- The group.IUser
objects.IProtocolSupport getElementByProtocolURI(String protocolURI) throws ModuleException
IElement
object which implements IProtocolSupport
interface.protocolURI
- The protocol URI as a java.lang.String.IProtocolSupport
object.ModuleException
- default module exception.ISearchController getSearchController() throws DirectoryModuleException
DirectoryModuleException
@Deprecated ISearchController getSearchController(IJdbcReference reference) throws DirectoryModuleException
reference
- The IJdbcReference
object.ISearchController
object.DirectoryModuleException
- default module exception.ISearchController getSearchController(IConnectionDefinition connectionDefinition) throws DirectoryModuleException
ConnectionDefinition
object.connectionDefinition
- The IConnectionDefinition
object.ISearchController
object.DirectoryModuleException
- Default module exception.ISearchController getSearchController(IDataSourceReference reference) throws DirectoryModuleException
IDataSourceReference
object.reference
- The IDataSourceReference
object.ISearchController
object.DirectoryModuleException
- Default module exception.ISecurityController getSecurityController(ISecuritySupport securitySupport) throws DirectoryModuleException
securitySupport
- Any ISecuritySupport
object.ISecurityController
object.DirectoryModuleException
- Default module exception.ITransformer getTransformer() throws DirectoryModuleException
ITransformer
object.DirectoryModuleException
- Default module exception.IDirectoryTransformer getDirectoryTransformer() throws DirectoryModuleException
IDirectoryTransformer
object.DirectoryModuleException
- Default module exception.IAttachment createAttachment(IContext context, String fileName, InputStream input)
IAttachment
object from a file name and an input stream.context
- The execution context.fileName
- A java.lang.String value.input
- An InputStream
object.IAttachment
object.IAttachment createAttachment(IContext context, File file)
IAttachment
object from a java.io.File object.context
- The execution context.file
- A java.io.File object.IAttachment
object.IAttachment createAttachment(IContext context, File file, boolean canBeRemoved)
IAttachment
object from a java.io.File object.context
- The execution context.file
- A java.io.File object.canBeRemoved
- Specifies if the local file should be removed.IAttachment
object.IAttachment createAttachment(IContext context, String fileName, byte[] bytes)
context
- The execution context.fileName
- A java.lang.String value.bytes
- The content of the attachment as a byte array.IAttachment
object.IResourceDefinition getResourceDefinition(IContext context, String name) throws DirectoryModuleException
context
- name
- of the tableIResourceDefinition
tableDirectoryModuleException
void addLocalizationScope(ILocalizationScopeSupport localizationScopeSupport, ILocalization localization, boolean heritable)
localizationScopeSupport
- localization
- heritable
- Collection<? extends IDirectoryLocalizationScope> getLocalizationScopes(ILocalizationScopeSupport localizationScopeSupport)
localizationScopeSupport
- IDirectoryLocalizationScope
void removeLocalizationScope(ILocalizationScopeSupport localizationScopeSupport, IDirectoryLocalizationScope directoryLocalizationScope)
localizationScopeSupport
- directoryLocalizationScope
- void restoreLocalizationScopeInheritance(ILocalizationScopeSupport localizationScopeSupport)
localizationScopeSupport
- void breakLocalizationScopeInheritance(ILocalizationScopeSupport localizationScopeSupport)
localizationScopeSupport
- boolean isLocalizationScopeInherited(ILocalizationScopeSupport localizationScopeSupport)
localizationScopeSupport
- void addOrganizationScope(IUser user, IOrganization organization, boolean heritable)
user
- organization
- heritable
- Collection<? extends IDirectoryOrganizationScope> getOrganizationScopes(IUser user)
user
- IDirectoryOrganizationScope
void removeOrganizationScope(IUser user, IDirectoryOrganizationScope directoryOrganizationScope)
user
- directoryOrganizationScope
- void restoreOrganizationScopeInheritance(IUser user)
user
- void breakOrganizationScopeInheritance(IUser user)
user
- boolean isOrganizationScopeInherited(IUser user)
user
- String getLocalizationPathLabel(ILocalization localization)
localization
- String getOrganizationPathLabel(IOrganization organization)
organization
- Copyright © 2021 Visiativ Software. All rights reserved.