| com.sun.xml.ws.api.security.trust.STSAuthorizationProvider
All known Subclasses: com.sun.xml.ws.security.trust.impl.DefaultSTSAuthorizationProvider,
STSAuthorizationProvider | public interface STSAuthorizationProvider (Code) | |
This interface is a plugin for authorization services to a Security Token Service (STS).
The authorization service determines if a requestor can be issued an token to access the target
service. The usual services mechanism is used to find implementing class
of STSAuthorizationProvider .
author: Jiandong Guo |
Method Summary | |
boolean | isAuthorized(Subject subject, String appliesTo, String tokenType, String keyType) Returns true if the requestor identified by the Subject can access the the target
service. |
isAuthorized | boolean isAuthorized(Subject subject, String appliesTo, String tokenType, String keyType)(Code) | | Returns true if the requestor identified by the Subject can access the the target
service.
Parameters: subject - The Subject contgaining authentication information and context of the authenticated requestor. Parameters: appliesTo - Identifying target service(s) Parameters: tokenType - Type of token to be issued. Parameters: keyType - Type of key to be issued true ot false. |
|
|