Package oracle.tip.pc.services.identity
Interface BPMUser
- All Superinterfaces:
BPMIdentity
,BPMPrincipal
,Principal
BPMUser
interface defines BPEL Process Manager User-
Method Summary
Modifier and TypeMethodDescriptionGets user's location, country based on user's localegetFax()
Gets fax number for thisBPMUser
It can return null if person does not have fax number.Gets first user nameGets positions assigned to the user.Gets home phone number for thisBPMUser
Gets user's language based on user's localeGets user's language preferenceGets last name for thisBPMUser
Gets user's java locale, based on language preference.Gets chain of managers for thisBPMUser
.getManagementChain
(int max) Gets chain of managers for thisBPMUser
up given max amount of managers.getManagementChain
(int max, String upToManagerName, String upToTitle) Gets chain of managers for thisBPMUser
up to given manager title or manager name Method can return empty list if user does not have managergetManagementChain
(String title) Gets chain of managers for thisBPMUser
up to given manager title.getManagementChain
(BPMUser upToUser) Gets chain of managers for thisBPMUser
up to given user.Gets manager thisBPMUser
.Gets manager's name thisBPMUser
.Gets middle name for thisBPMUser
Gets mobile phone number for thisBPMUser
It can return null if person does not have mobile phone.Deprecated.since 11.getPager()
Gets pager number for thisBPMUser
It can return null if person does not have pager.Gets the permissions associated with the UsergetPermissions
(String appId) Gets the permissions associated with the User for a given applicationgetReportees
(int maxReporteeLevel) Gets reportees for the user up to given level in the hierarchical structureGets Tenant ID in which this user is seeded.Gets Tenant Name in which this user is seeded.Gets user's time zonegetTitle()
Gets user's titleGets work phone number for thisBPMUser
boolean
hasPermission
(Permission perm, String appId) Checks whether the user has specify permissionboolean
Check is current user is a manager who has at least one reporteeMethods inherited from interface oracle.tip.pc.services.identity.BPMIdentity
getActions, getAppRoles, getAppRoles, getEmail, getGrantedRoles, getGrantedRoles, getGroups, getIdentityType, getManagedRoles, getOwnedRoles, getRoles, isInAppRole, isInGroup, isInRole, isInRole, isOwner
Methods inherited from interface oracle.tip.pc.services.identity.BPMPrincipal
getAttribute, getAttributes, getDescription, getDisplayName, getDisplayName, getFullName, getGuid, getRealmName, getUniqueName, toNode
-
Method Details
-
getFirstName
Gets first user name- Returns:
- String
- Throws:
BPMIdentityException
- if error occurs
-
getMiddleName
Gets middle name for thisBPMUser
- Returns:
- String
- Throws:
BPMIdentityException
- if error occurs
-
getLastName
Gets last name for thisBPMUser
- Returns:
- String
- Throws:
BPMIdentityException
- if error occurs
-
getWorkPhone
Gets work phone number for thisBPMUser
- Returns:
- work phone number or null
- Throws:
BPMIdentityException
- if error occurs
-
getHomePhone
Gets home phone number for thisBPMUser
- Returns:
- home phone number or null
- Throws:
BPMIdentityException
- if error occurs
-
getMobile
Gets mobile phone number for thisBPMUser
It can return null if person does not have mobile phone.- Returns:
- mobile phone number or null
- Throws:
BPMIdentityException
- if error occurs
-
getFax
Gets fax number for thisBPMUser
It can return null if person does not have fax number.- Returns:
- fax is a fax number or null
- Throws:
BPMIdentityException
- if error occurs
-
getPager
Gets pager number for thisBPMUser
It can return null if person does not have pager.- Returns:
- pager number or null
- Throws:
BPMIdentityException
- if error occurs
-
getManager
Gets manager thisBPMUser
. It can return null object if person does not have a manager.- Returns:
BPMUser
a mananer to this user.- Throws:
BPMIdentityNotFoundException
- if manager is not found in systemBPMIdentityException
- if error occurs
-
getManagerName
Gets manager's name thisBPMUser
. It can return null object if person does not have a manager.- Returns:
- name of a mananer to this user.
- Throws:
BPMIdentityException
- if error occurs
-
getReportees
Gets reportees for the user up to given level in the hierarchical structure- Parameters:
maxReporteeLevel
- - reportees included into result up to maxReporteeLevel from the manager in hierarchical structure If level equals 1, method returns only one level of reportesfor the user; if level equals 2, method return only two levels of reportees for the user; if level equals 3, method returns only treee levels reportees for the user; etc; if 0 or any negative specify , it assumes all reportees- Returns:
List
of reportees,BPMUser
s.- Throws:
BPMIdentityException
- if error occurs
-
getNotificationPreferences
Deprecated.since 11. The method returns empty list.Gets list of preferences,Channel
objects for notification. Each Channel in list has preference over next for given person List could be empty if no preferences were specified- Returns:
- list of Channel
- Throws:
BPMIdentityException
- if error occurs
-
getLanguagePreference
Gets user's language preference- Returns:
- language preference
- Throws:
BPMIdentityException
- if error occurs
-
getLanguage
Gets user's language based on user's locale- Returns:
- language
- Throws:
BPMIdentityException
- if error occurs
-
getCountry
Gets user's location, country based on user's locale- Returns:
- country
- Throws:
BPMIdentityException
- if error occurs
-
getLocale
Gets user's java locale, based on language preference. if language preference isnot defined, default locale is returned- Returns:
- Locale
- Throws:
BPMIdentityException
- if error occurs
-
getTimeZone
Gets user's time zone- Returns:
- time zone
- Throws:
BPMIdentityException
- if error occurs
-
getTitle
Gets user's title- Returns:
- title
- Throws:
BPMIdentityException
- if error occurs
-
getManagementChain
Gets chain of managers for thisBPMUser
. Method can return empty list if the user does not have manager- Returns:
- List of
BPMUser
objects which composing manager chain for this person. - Throws:
BPMIdentityException
- if error occurs
-
getManagementChain
Gets chain of managers for thisBPMUser
up given max amount of managers. Method can return empty list if user does not have manager or less then given max amount if person does not have more managers obove him in his hierarchical structure- Parameters:
max
- a maximum anount of managers to look up in management chain If this is 0, then an empty list is returned. If it is negative, then the chain till the top of the hierarchy is returned.- Returns:
- List of
BPMUser
objects which composing manager chain for this person - Throws:
BPMIdentityException
- if error occurs
-
getManagementChain
Gets chain of managers for thisBPMUser
up to given manager title. Method can return empty list if user does not have manager- Parameters:
title
- a manager title. If this is the same as the title of the current user, then an empty list is returned. Otherwise, the chain till this specified user is returned.- Returns:
- List of
BPMUser
objects which composing manager chain for this person from company hierarchical structure - Throws:
BPMIdentityNotFoundException
- if no manager with specified title is found for this person from hierarchical organization structureBPMIdentityException
- if error occurs
-
getManagementChain
Gets chain of managers for thisBPMUser
up to given user. Method can return empty list if user does not have manager or upToUser is the same user- Parameters:
upToUser
- is a last user included into the manangent chain result. If this is the same as the current user, then an empty list is returned. Otherwise, the chain till this specified user is returned.- Returns:
- List of
BPMUser
objects which composing manager chain for this person from company hierarchical structure - Throws:
BPMIdentityNotFoundException
- if no manager with specified upToUserBPMUser
is found for this person from hierarchical organization structureBPMIdentityException
- if error occurs
-
getManagementChain
List getManagementChain(int max, String upToManagerName, String upToTitle) throws BPMIdentityException, BPMIdentityNotFoundException Gets chain of managers for thisBPMUser
up to given manager title or manager name Method can return empty list if user does not have manager- Parameters:
max
- a maximum anount of managers to look up in management chain If this is 0, then an empty list is returned. If it is negative, then the chain till the top of the hierarchy is returned. Otherwise, the chain till this specified limit is returned.upToManagerName
- a manager name. If this is the same as the name of the current user, an empty list is returned.upToTitle
- a manager title. If this is the same as the title of the current user, then an empty list is returned. Otherwise, the chain till this specified user is returned.- Returns:
- List of
BPMUser
objects which composing manager chain for this person from company hierarchical structure throws BPMIdentityNotFoundException if no manager with specified title or with specified upToUserBPMUser
is found for this person from hierarchical organization structure - Throws:
BPMIdentityException
- if error occursBPMIdentityNotFoundException
-
hasPermission
Checks whether the user has specify permission- Parameters:
perm
- a Permission objectappId
- a application Id- Returns:
- true if user has specified permission, else false
- Throws:
BPMIdentityException
- if error occurs
-
getPermissions
Gets the permissions associated with the User- Returns:
- PermissionCollection
- Throws:
BPMIdentityException
- if error occurs
-
getPermissions
Gets the permissions associated with the User for a given application- Parameters:
appId
- a application Id- Returns:
- PermissionCollection
- Throws:
BPMIdentityException
- if error occurs
-
getGrantedPositions
Gets positions assigned to the user. This API is based on PositionLookup provider configuration. If the position lookup provider is configured in indentity configurations, the API queries to the provider and retunrs the list of BPMPositions. If no provider is specified, empty list is returned.- Returns:
- Throws:
BPMIdentityException
- if error occurs
-
getTenantID
Gets Tenant ID in which this user is seeded. This API is applicable only for multi-tenant environments configured with Oracle Internet Directory.- Returns:
- Tenant ID of the user
- Throws:
BPMIdentityException
- if error occurs
-
getTenantName
Gets Tenant Name in which this user is seeded. This API is applicable only for multi-tenant environments configured with Oracle Internet Directory.- Returns:
- Tenant Name of the user
- Throws:
BPMIdentityException
- if error occurs
-
isManager
Check is current user is a manager who has at least one reportee- Returns:
- isManager, true or false
- Throws:
BPMIdentityException
- if error occurs
-