|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.ibm.itim.dataservices.model.domain.RoleSearch
Provides an interface for searching for roles. This interface is supplied to clients so that they can search in a more direct manner without having to traverse data model relationships to retrieve roles.
RoleEntity
Constructor Summary | |
---|---|
RoleSearch()
Default constructor. |
Method Summary | |
---|---|
RoleEntity |
lookup(DistinguishedName dn)
Retrieves a role from the data store with the given distinguished name. |
SearchResults |
searchByFilter(CompoundDN searchContext,
java.lang.String filter,
SearchParameters params)
Searches for roles that meet the criteria defined within the given filter. |
SearchResults |
searchByFilter(CompoundDN searchContext,
java.lang.String profileName,
java.lang.String filter,
SearchParameters params)
Searches for roles that meet the criteria defined within the given filter. |
SearchResults |
searchByFilter(OrganizationalContainerEntity searchContext,
java.lang.String filter,
SearchParameters params)
Searches for roles that meet the criteria defined within the given filter. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public RoleSearch()
Method Detail |
public RoleEntity lookup(DistinguishedName dn) throws ModelCommunicationException, ObjectNotFoundException
dn
- DistinguishedName of the role.
ModelCommunicationException
- Thrown if unable to communicate
with the data store.
ObjectNotFoundException
- Thrown if unable to locate the
entity in the data store. This may be due to an invalid
distinguished name, or the entity may have been removed by
another client.public SearchResults searchByFilter(OrganizationalContainerEntity searchContext, java.lang.String filter, SearchParameters params) throws ModelCommunicationException, ObjectNotFoundException
searchContext
- OrganizationalContainerEntity which is to be used
as the base context to search from.filter
- Filter that defines the criteria for returned
RoleEntities to meet. The filter must be in the
format defined by RFC2254.params
- SearchParameters that provide additional context for
how the search should be performed.
If the search scope is ONELEVEL_SCOPE, the search is
limited only to the roles belong to the passing
parent (searchContext.last()). Otherwise, the whole
organizational logical subtree will be searched.
ModelCommunicationException
- Thrown if unable to communicate
with the data store.
ObjectNotFoundException
- Thrown if unable to locate the
specified container as a search base. This may be due to the
container being removed by another client.public SearchResults searchByFilter(CompoundDN searchContext, java.lang.String filter, SearchParameters params) throws ModelCommunicationException, ObjectNotFoundException
searchContext
- CompoundDN that defines the base of the search.
At least one (1) element and at most three (3)
are expected:
filter
- Filter that defines the criteria for returned
RoleEntities to meet. The filter must be in the
format defined by RFC2254.params
- SearchParameters that provide additional context for
how the search should be performed.
If the search scope is ONELEVEL_SCOPE, the search is
limited only to the roles belong to the passing
parent (searchContext.last()). Otherwise, the whole
organizational logical subtree will be searched.
ModelCommunicationException
- Thrown if unable to communicate
with the data store.
ObjectNotFoundException
- Thrown if unable to locate the
specified container as a search base. This may be due to the
container being removed by another client.public SearchResults searchByFilter(CompoundDN searchContext, java.lang.String profileName, java.lang.String filter, SearchParameters params) throws ModelCommunicationException, ObjectNotFoundException
searchContext
- CompoundDN that defines the base of the search.
At least one (1) element and at most three (3)
are expected:
profileName
- Name of the ObjectProfile that defines the type of
role (i.e., static or dynamic) to search
for. If empty string passed, roles of all types
will be returned.filter
- Filter that defines the criteria for returned
RoleEntities to meet. The filter must be in the
format defined by RFC2254.params
- SearchParameters that provide additional context for
how the search should be performed.
If the search scope is ONELEVEL_SCOPE, the search is
limited only to the roles belong to the passing
parent (searchContext.last()). Otherwise, the whole
organizational logical subtree will be searched.
ModelCommunicationException
- Thrown if unable to communicate
with the data store.
ObjectNotFoundException
- Thrown if unable to locate the
specified container as a search base. This may be due to the
container being removed by another client.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |