📄 samltokenbuilder.java
字号:
package org.wso2.solutions.identity.sts.saml;import org.apache.rahas.RahasData;import org.joda.time.DateTime;import org.opensaml.xml.security.x509.X509Credential;import org.w3c.dom.Element;import org.wso2.solutions.identity.IdentityProviderException;import org.wso2.solutions.identity.sts.IdentityProviderData;/** * The builder pattern. Builder interface. Concrete implementations build * SAMLAssertions of different types. */public interface SAMLTokenBuilder { void createStatement(IdentityProviderData ipData, RahasData rahasData) throws IdentityProviderException; void createSAMLAssertion(DateTime notAfter, DateTime notBefore, String assertionId) throws IdentityProviderException; void setSignature(String signatureAlgorithm, X509Credential cred) throws IdentityProviderException; void marshellAndSign() throws IdentityProviderException; Element getSAMLasDOM() throws IdentityProviderException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -