Interface OrganizationProvider
- All Superinterfaces:
Provider
- All Known Implementing Classes:
InfinispanOrganizationProvider
,JpaOrganizationProvider
Provider
that manages organization and its data within the scope of a realm.-
Method Summary
Modifier and TypeMethodDescriptionboolean
addIdentityProvider
(OrganizationModel organization, IdentityProviderModel identityProvider) Associate the givenIdentityProviderModel
with the givenOrganizationModel
.boolean
addManagedMember
(OrganizationModel organization, UserModel user) Adds the givenUserModel
as a managed member of the givenOrganizationModel
.boolean
addMember
(OrganizationModel organization, UserModel user) Adds the givenUserModel
as an unmanaged member of the givenOrganizationModel
.long
count()
Returns number of organizations in the realm.default OrganizationModel
Creates a new organization with givenname
andalias
to the realm.Creates a new organization with givenid
,name
, andalias
to the realmdefault Stream<OrganizationModel>
Returns all organizations in the realm.getAllStream
(String search, Boolean exact, Integer first, Integer max) Returns all organizations in the realm filtered according to the specified parameters.Returns all organizations in the realm filtered according to the specified parameters.default OrganizationModel
getByAlias
(String alias) Returns anOrganizationModel
with the givenalias
.getByDomainName
(String domainName) Returns aOrganizationModel
by its internet domain.Returns aOrganizationModel
by itsid
;getByMember
(UserModel member) Returns theOrganizationModel
that themember
belongs to.getIdentityProviders
(OrganizationModel organization) getMemberById
(OrganizationModel organization, String id) Returns the member of theOrganizationModel
by itsid
.long
getMembersCount
(OrganizationModel organization) Returns number of members in the organization.getMembersStream
(OrganizationModel organization, String search, Boolean exact, Integer first, Integer max) Returns the members of a givenOrganizationModel
filtered according to the specified parameters.boolean
Indicates if the current realm supports organization.boolean
isManagedMember
(OrganizationModel organization, UserModel member) Indicates if the givenmember
is managed by the organization.default boolean
isMember
(OrganizationModel organization, UserModel user) Indicates if the givenuser
is a member of the givenorganization
.boolean
remove
(OrganizationModel organization) Removes the given organization from the realm together with the data associated with it, e.g.void
Removes all organizations from the realm.boolean
removeIdentityProvider
(OrganizationModel organization, IdentityProviderModel identityProvider) Removes the link between the givenOrganizationModel
and the identity provider associated with it if such a link exists.boolean
removeMember
(OrganizationModel organization, UserModel member) Removes a member from the organization.
-
Method Details
-
create
Creates a new organization with givenname
andalias
to the realm. The internal ID of the organization will be created automatically.- Parameters:
name
- the name of the organization.alias
- the alias of the organization. If not set, defaults to the value set toname
. Once set, the alias is immutable.- Returns:
- Model of the created organization.
- Throws:
ModelDuplicateException
- If there is already an organization with the given name or alias
-
create
Creates a new organization with givenid
,name
, andalias
to the realm- Parameters:
id
- the id of the organization.name
- the name of the organization.alias
- the alias of the organization. If not set, defaults to the value set toname
. Once set, the alias is immutable.- Returns:
- Model of the created organization.
- Throws:
ModelDuplicateException
- If there is already an organization with the given name or alias
-
getById
Returns aOrganizationModel
by itsid
;- Parameters:
id
- the id of an organization- Returns:
- the organization with the given
id
ornull
if there is no such an organization.
-
getByDomainName
Returns aOrganizationModel
by its internet domain.- Parameters:
domainName
- the organization's internet domain (e.g. redhat.com)- Returns:
- the organization that is linked to the given internet domain
-
getAllStream
Returns all organizations in the realm.- Returns:
- a
Stream
of the realm's organizations.
-
getAllStream
Returns all organizations in the realm filtered according to the specified parameters.- Parameters:
search
- aString
representing either an organization name or domain.exact
- iftrue
, the organizations will be searched using exact match for thesearch
param - i.e. either the organization name or one of its domains must match exactly thesearch
param. If false, the method returns all organizations whose name or (domains) partially match thesearch
param.first
- the position of the first result to be processed (pagination offset). Ignored if negative ornull
.max
- the maximum number of results to be returned. Ignored if negative ornull
.- Returns:
- a
Stream
of the matched organizations. Never returnsnull
.
-
getAllStream
Returns all organizations in the realm filtered according to the specified parameters.- Parameters:
attributes
- aMap
containig the attributes (name/value) that must match organization attributes.first
- the position of the first result to be processed (pagination offset). Ignored if negative ornull
.max
- the maximum number of results to be returned. Ignored if negative ornull
.- Returns:
- a
Stream
of the matched organizations. Never returnsnull
.
-
remove
Removes the given organization from the realm together with the data associated with it, e.g. its members etc.- Parameters:
organization
- Organization to be removed.- Returns:
true
if the organization was removed,false
otherwise- Throws:
ModelException
- if the organization doesn't exist or doesn't belong to the realm.
-
removeAll
void removeAll()Removes all organizations from the realm. -
addManagedMember
Adds the givenUserModel
as a managed member of the givenOrganizationModel
.- Parameters:
organization
- the organizationuser
- the user- Returns:
true
if the user was added as a member. Otherwise, returnsfalse
- Throws:
ModelException
- if theUserModel
is member of different organization
-
addMember
Adds the givenUserModel
as an unmanaged member of the givenOrganizationModel
.- Parameters:
organization
- the organizationuser
- the user- Returns:
true
if the user was added as a member. Otherwise, returnsfalse
- Throws:
ModelException
- if theUserModel
is member of different organization
-
getMembersStream
Stream<UserModel> getMembersStream(OrganizationModel organization, String search, Boolean exact, Integer first, Integer max) Returns the members of a givenOrganizationModel
filtered according to the specified parameters.- Parameters:
organization
- the organization- Returns:
- Stream of the members. Never returns
null
.
-
getMembersCount
Returns number of members in the organization.- Parameters:
organization
- the organization- Returns:
- Number of members in the organization.
-
getMemberById
Returns the member of theOrganizationModel
by itsid
.- Parameters:
organization
- the organizationid
- the member id- Returns:
- the member of the
OrganizationModel
with the givenid
-
getByMember
Returns theOrganizationModel
that themember
belongs to.- Parameters:
member
- the member of an organization- Returns:
- the organizations the
member
belongs to or an empty stream if the user doesn't belong to any.
-
addIdentityProvider
Associate the givenIdentityProviderModel
with the givenOrganizationModel
.- Parameters:
organization
- the organizationidentityProvider
- the identityProvider- Returns:
true
if the identityProvider was associated with the organization. Otherwise, returnsfalse
-
getIdentityProviders
- Parameters:
organization
- the organization- Returns:
- Stream of the identity providers associated with the given
organization
. Never returnsnull
.
-
removeIdentityProvider
boolean removeIdentityProvider(OrganizationModel organization, IdentityProviderModel identityProvider) Removes the link between the givenOrganizationModel
and the identity provider associated with it if such a link exists.- Parameters:
organization
- the organizationidentityProvider
- the identity provider- Returns:
true
if the link was removed,false
otherwise
-
isEnabled
boolean isEnabled()Indicates if the current realm supports organization.- Returns:
true
if organization is supported. Otherwise, returnsfalse
-
isManagedMember
Indicates if the given
member
is managed by the organization.A member is managed by the organization whenever the member cannot exist without the organization they belong to so that their lifecycle is bound to the organization lifecycle. For instance, when a member is federated from the identity provider associated with an organization, there is a strong relationship between the member identity and the organization.
On the other hand, existing realm users whose identities are not intrinsically linked to an organization but are eventually joining an organization are not managed by the organization. They have a lifecycle that does not depend on the organization they are linked to.
- Parameters:
organization
- the organizationmember
- the member- Returns:
true
if themember
is managed by the givenorganization
. Otherwise, returnsfalse
-
isMember
Indicates if the givenuser
is a member of the givenorganization
.- Parameters:
organization
- the organizationuser
- the member- Returns:
true
if the user is a member. Otherwise,false
-
removeMember
Removes a member from the organization.
This method can either remove the given
member
entirely from the realm (and the organization) or only remove the link to theorganization
so that the user still exists but is no longer a member of the organization. The decision to remove the user entirely or only the link depends on whether the user is managed by the organization or not, respectively.- Parameters:
organization
- the organizationmember
- the member- Returns:
true
if the givenmember
is a member and was successfully removed from the organization. Otherwise, returnsfalse
-
count
long count()Returns number of organizations in the realm.- Returns:
- long Number of organizations
-
getByAlias
Returns anOrganizationModel
with the givenalias
.- Parameters:
alias
- the alias- Returns:
- the organization
-