| java.lang.Object com.sun.jbi.internal.security.config.MessageSecPolicyImpl
MessageSecPolicyImpl | public class MessageSecPolicyImpl implements MessageSecPolicy(Code) | | Implementation of the Message Protection Policy.
author: Sun Microsystems, Inc. |
MessageSecPolicyImpl | public MessageSecPolicyImpl(Set ops, AuthPolicy reqPolicy, AuthPolicy respPolicy)(Code) | | Ctor.
Parameters: ops - is the set of operations for the MessageSecPolicy Parameters: reqPolicy - is the Request Auth Policy Parameters: respPolicy - is the Response Auth Policy |
MessageSecPolicyImpl | public MessageSecPolicyImpl(Set ops, AuthPolicy reqPolicy, AuthPolicy respPolicy, String provider)(Code) | | Ctor.
Parameters: ops - is the set of operations for the MessageSecPolicy Parameters: reqPolicy - is the Request Auth Policy Parameters: respPolicy - is the Response Auth Policy Parameters: provider - is the Provider Name |
getMessageProviderId | public String getMessageProviderId()(Code) | | Get the Id of the Provider. If a Provider is not specified in the deployment
configuration, an empty String is returned.
the id of the Message Security Provider |
getOperations | public Set getOperations()(Code) | | Get the Set of Operations to which this MessageSecPolicy applies.
the Set of Operations to which this MessageSecPolicy applies |
getRequestPolicy | public AuthPolicy getRequestPolicy()(Code) | | Get the RequestPolicy. The Request Policy is of the Type AuthPolicy.
This class is currently defined in the com.sun.enterprise.security.jauth
package, this would be standardized in JSR 196.
If the Endpoint is a Consumer (Server) Endpoint the Request Policy
applies to incoming requests, if its a Provider (Client) Endpoint
the policy applies to the outgoing request.
the request AuthPolicy |
getResponsePolicy | public AuthPolicy getResponsePolicy()(Code) | | Get the ResponsePolicy. The Request Policy is of the Type AuthPolicy.
This class is currently defined in the com.sun.enterprise.security.jauth
package, this would be standardized in JSR 196.
If the Endpoint is a Consumer (Server) Endpoint the Response Policy
applies to outgoing requests, if its a Provider (Client) Endpoint
the policy applies to the incoming response.
the ResponsePolicy. |
getResponsePolicy | public void getResponsePolicy(AuthPolicy respPolicy)(Code) | | Set the ResponsePolicy.
If the Endpoint is a Consumer (Server) Endpoint the Response Policy
applies to outgoing requests, if its a Provider (Client) Endpoint
the policy applies to the incoming response.
Parameters: respPolicy - is the ResponsePolicy. |
setMessageProviderId | public void setMessageProviderId(String id)(Code) | | Set the Id of the Provider.
Parameters: id - is the name of the Message Security Provider |
setRequestPolicy | public void setRequestPolicy(AuthPolicy reqPolicy)(Code) | | Set the RequestPolicy.
If the Endpoint is a Consumer (Server) Endpoint the Request Policy
applies to incoming requests, if its a Provider (Client) Endpoint
the policy applies to the outgoing request.
Parameters: reqPolicy - is the request AuthPolicy |
|
|