Package oracle.tip.pc.services.identity
Interface BPMAuthenticationService
- All Superinterfaces:
Service
- All Known Subinterfaces:
BPMIdentityService
BPMAuthenticationService
defines BPEL Process Manager Authentication Service
An instance can be obtained from the ServiceFactory. For example:
BPMAuthenticationService service = ServiceFactory.getAuthenticationServiceInstance();
BPMAuthenticationService service = ServiceFactory.getAuthenticationServiceInstance("myRealm");
This method will fetch the service instance as configured in the identity service configuration.-
Method Summary
Modifier and TypeMethodDescriptionvoid
authenticateUser
(String userName, char[] password) Authenticates the given user and password against the system.void
authenticateUser
(String userName, String password) Deprecated.since release 11.Gets the configuration associated with this serviceGets the provider associated with this serviceGets the name of the realm associated with this service.
-
Method Details
-
authenticateUser
void authenticateUser(String userName, String password) throws BPMAuthenticationException, BPMIdentityException Deprecated.since release 11. UseauthenticateUser(String, char[])
insteadAuthenticates the given user and password against the system.- Parameters:
userName
- user namepassword
- user password- Throws:
BPMAuthenticationException
- if user not authenticatedBPMIdentityException
- if error occurs
-
authenticateUser
void authenticateUser(String userName, char[] password) throws BPMAuthenticationException, BPMIdentityException Authenticates the given user and password against the system.- Parameters:
userName
- The name of the user who is to be authenticatedpassword
- The password as a character array- Throws:
BPMAuthenticationException
- If authentication fails or causes an exception condition.BPMIdentityException
- If any other exception condition occurs.
-
getRealmName
Gets the name of the realm associated with this service.- Returns:
- realm name
- Throws:
BPMIdentityException
- If any exception condition occurs.
-
getConfiguration
Gets the configuration associated with this service- Returns:
- configuration
- Throws:
BPMIdentityException
- If any exception condition occurs.
-
getProvider
BPMProvider getProvider()Gets the provider associated with this service- Returns:
- BPMProvider instance
- Throws:
BPMIdentityException
- If any exception condition occurs.
-