org.apache.cxf.sts.token.provider
Class TokenProviderParameters

java.lang.Object
  extended by org.apache.cxf.sts.token.provider.TokenProviderParameters

public class TokenProviderParameters
extends Object

This class encapsulates the parameters that will be passed to a TokenProvider instance to create a token. It consists of both parameters that have been extracted from the request, as well as configuration specific to the STS itself.


Constructor Summary
TokenProviderParameters()
           
 
Method Summary
 Map<String,Object> getAdditionalProperties()
           
 String getAppliesToAddress()
           
 ClaimsManager getClaimsManager()
           
 EncryptionProperties getEncryptionProperties()
           
 KeyRequirements getKeyRequirements()
           
 Principal getPrincipal()
           
 String getRealm()
           
 RequestClaimCollection getRequestedClaims()
           
 STSPropertiesMBean getStsProperties()
           
 TokenRequirements getTokenRequirements()
           
 org.apache.cxf.ws.security.tokenstore.TokenStore getTokenStore()
           
 javax.xml.ws.WebServiceContext getWebServiceContext()
           
 void setAdditionalProperties(Map<String,Object> additionalProperties)
           
 void setAppliesToAddress(String appliesToAddress)
           
 void setClaimsManager(ClaimsManager claimsManager)
           
 void setEncryptionProperties(EncryptionProperties encryptionProperties)
           
 void setKeyRequirements(KeyRequirements keyRequirements)
           
 void setPrincipal(Principal principal)
           
 void setRealm(String realm)
           
 void setRequestedClaims(RequestClaimCollection requestedClaims)
           
 void setStsProperties(STSPropertiesMBean stsProperties)
           
 void setTokenRequirements(TokenRequirements tokenRequirements)
           
 void setTokenStore(org.apache.cxf.ws.security.tokenstore.TokenStore tokenStore)
           
 void setWebServiceContext(javax.xml.ws.WebServiceContext webServiceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TokenProviderParameters

public TokenProviderParameters()
Method Detail

getTokenStore

public org.apache.cxf.ws.security.tokenstore.TokenStore getTokenStore()

setTokenStore

public void setTokenStore(org.apache.cxf.ws.security.tokenstore.TokenStore tokenStore)

getClaimsManager

public ClaimsManager getClaimsManager()

setClaimsManager

public void setClaimsManager(ClaimsManager claimsManager)

getAppliesToAddress

public String getAppliesToAddress()

setAppliesToAddress

public void setAppliesToAddress(String appliesToAddress)

getTokenRequirements

public TokenRequirements getTokenRequirements()

setTokenRequirements

public void setTokenRequirements(TokenRequirements tokenRequirements)

getKeyRequirements

public KeyRequirements getKeyRequirements()

setKeyRequirements

public void setKeyRequirements(KeyRequirements keyRequirements)

getRequestedClaims

public RequestClaimCollection getRequestedClaims()

setRequestedClaims

public void setRequestedClaims(RequestClaimCollection requestedClaims)

getStsProperties

public STSPropertiesMBean getStsProperties()

setStsProperties

public void setStsProperties(STSPropertiesMBean stsProperties)

getEncryptionProperties

public EncryptionProperties getEncryptionProperties()

setEncryptionProperties

public void setEncryptionProperties(EncryptionProperties encryptionProperties)

getWebServiceContext

public javax.xml.ws.WebServiceContext getWebServiceContext()

setWebServiceContext

public void setWebServiceContext(javax.xml.ws.WebServiceContext webServiceContext)

setPrincipal

public void setPrincipal(Principal principal)

getPrincipal

public Principal getPrincipal()

setAdditionalProperties

public void setAdditionalProperties(Map<String,Object> additionalProperties)

getAdditionalProperties

public Map<String,Object> getAdditionalProperties()

setRealm

public void setRealm(String realm)

getRealm

public String getRealm()


Apache CXF