Class SubjectProviderParameters
- java.lang.Object
-
- org.apache.cxf.sts.token.provider.SubjectProviderParameters
-
public class SubjectProviderParameters extends Object
The parameters that are passed through to a SubjectProvider implementation to create a Subject(Bean).
-
-
Constructor Summary
Constructors Constructor Description SubjectProviderParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<org.apache.wss4j.common.saml.bean.AttributeStatementBean>getAttrBeanList()List<org.apache.wss4j.common.saml.bean.AuthenticationStatementBean>getAuthBeanList()List<org.apache.wss4j.common.saml.bean.AuthDecisionStatementBean>getAuthDecisionBeanList()DocumentgetDoc()TokenProviderParametersgetProviderParameters()byte[]getSecret()voidsetAttrBeanList(List<org.apache.wss4j.common.saml.bean.AttributeStatementBean> attrBeanList)voidsetAuthBeanList(List<org.apache.wss4j.common.saml.bean.AuthenticationStatementBean> authBeanList)voidsetAuthDecisionBeanList(List<org.apache.wss4j.common.saml.bean.AuthDecisionStatementBean> authDecisionBeanList)voidsetDoc(Document doc)voidsetProviderParameters(TokenProviderParameters providerParameters)voidsetSecret(byte[] secret)
-
-
-
Method Detail
-
getProviderParameters
public TokenProviderParameters getProviderParameters()
-
setProviderParameters
public void setProviderParameters(TokenProviderParameters providerParameters)
-
getDoc
public Document getDoc()
-
setDoc
public void setDoc(Document doc)
-
getSecret
public byte[] getSecret()
-
setSecret
public void setSecret(byte[] secret)
-
getAttrBeanList
public List<org.apache.wss4j.common.saml.bean.AttributeStatementBean> getAttrBeanList()
-
setAttrBeanList
public void setAttrBeanList(List<org.apache.wss4j.common.saml.bean.AttributeStatementBean> attrBeanList)
-
getAuthBeanList
public List<org.apache.wss4j.common.saml.bean.AuthenticationStatementBean> getAuthBeanList()
-
setAuthBeanList
public void setAuthBeanList(List<org.apache.wss4j.common.saml.bean.AuthenticationStatementBean> authBeanList)
-
getAuthDecisionBeanList
public List<org.apache.wss4j.common.saml.bean.AuthDecisionStatementBean> getAuthDecisionBeanList()
-
setAuthDecisionBeanList
public void setAuthDecisionBeanList(List<org.apache.wss4j.common.saml.bean.AuthDecisionStatementBean> authDecisionBeanList)
-
-