Package com.bea.wli.sb.transports
Interface CredentialCallback
public interface CredentialCallback
Transport providers get an instance of this callback interface from OSB.
The transport provider can call its methods to fetch a credential used for
outbound authentication.
-
Method Summary
Modifier and TypeMethodDescriptionweblogic.security.KeyPairCredential
Returns a key-pair credential used for outbound SSL client authentication.Returns a reference to the service key provider used by this CredentialCallback or null if the CredentialCallback does not have a service key providerGets the client request subject.getSubject
(Ref serviceAccount) Gets the JAAS subject according to the service account policy.getUsernamePassword
(Ref serviceAccount) Gets the username/password according to the service account policy.<T> T
runAsSubject
(Ref serviceAccount, PrivilegedExceptionAction<T> action) Runs the specified action using the subject according to the service account policy.<T> T
runAsSubject
(PrivilegedAction<T> action) Runs the specified action using the client request subject.<T> T
runAsSubject
(PrivilegedExceptionAction<T> action) Runs the specified action using the client request subject.
-
Method Details
-
getUsernamePassword
Gets the username/password according to the service account policy. The transport provider can use this username/password for outbound basic authentication.- Parameters:
serviceAccount
- a reference to the endpoint's service account- Returns:
- the username/password
- Throws:
CredentialNotFoundException
- if there is any error while resolving the username/passwordIllegalArgumentException
- if serviceAccount is null
-
getSubject
Gets the JAAS subject according to the service account policy. Note that this subject may be anonymous. The transport provider can calloracle.security.jps.runtime.SubjectSecurity#executeAs(javax.security.auth.Subject,java.security.PrivilegedAction)
to push the subject on the thread.- Parameters:
serviceAccount
- a reference to the endpoint's service account- Returns:
- the subject
- Throws:
CredentialNotFoundException
- if there is any error while resolving the subjectIllegalArgumentException
- if serviceAccount is null
-
getSubject
Gets the client request subject. OSB supports several mechanisms to authenticate clients. In particular, the client request may be authenticated at the transport level or message level. Transport providers must not make any assumptions about the method used to authenticate this subject. Note that this subject may be anonymous.The transport provider can use this subject for JAAS-based outbound authentication. The transport provider can call to push the subject on the thread.
Note: transport providers should not rely on the subject on the thread at the time the provider is invoked.
- Returns:
- the client subject
- Throws:
CredentialNotFoundException
- if there is any error while resolving the subject
-
runAsSubject
Runs the specified action using the client request subject. OSB supports several mechanisms to authenticate clients. In particular, the client request may be authenticated at the transport level or message level. Transport providers must not make any assumptions about the method used to authenticate this subject. Note that this subject may be anonymous.- Parameters:
action
- the action to run using the client request subject- Returns:
- the value returned from the specified action
- Throws:
PrivilegedActionException
- exception thrown from specified actionCredentialNotFoundException
- if there is any error while resolving the subject- Since:
- 12.1.3
-
runAsSubject
<T> T runAsSubject(PrivilegedExceptionAction<T> action) throws PrivilegedActionException, CredentialNotFoundException Runs the specified action using the client request subject. OSB supports several mechanisms to authenticate clients. In particular, the client request may be authenticated at the transport level or message level. Transport providers must not make any assumptions about the method used to authenticate this subject. Note that this subject may be anonymous.- Parameters:
action
- the action to run using the client request subject- Returns:
- the value returned from the specified action
- Throws:
PrivilegedActionException
- exception thrown from specified actionCredentialNotFoundException
- if there is any error while resolving the subject- Since:
- 12.1.3
-
runAsSubject
<T> T runAsSubject(Ref serviceAccount, PrivilegedExceptionAction<T> action) throws PrivilegedActionException, CredentialNotFoundException Runs the specified action using the subject according to the service account policy.- Parameters:
serviceAccount
- a reference to the endpoint's service accountaction
- the action to run using the client request subject- Returns:
- the value returned from the specified action
- Throws:
PrivilegedActionException
- exception thrown from specified actionCredentialNotFoundException
- if there is any error while resolving the subject- Since:
- 12.1.3
-
getKeyPair
Returns a key-pair credential used for outbound SSL client authentication.- Returns:
- the SSL key-pair
- Throws:
CredentialNotFoundException
- if there is any error while resolving the key-pair
-
getServiceKeyProvider
Ref getServiceKeyProvider()Returns a reference to the service key provider used by this CredentialCallback or null if the CredentialCallback does not have a service key provider- Returns:
- the service key provider
- Since:
- 3.0
-