📄 tokenholder.java
字号:
package org.wso2.solutions.identity.relyingparty.saml.tokens;import java.util.Map;import org.opensaml.xml.io.UnmarshallingException;import org.opensaml.xml.signature.Signature;import org.w3c.dom.Element;public interface TokenHolder { /** * Creates the SAML object from the element This method must be called first * * @param elem * @throws UnmarshallingException * If the token creation fails */ public void createToken(Element elem) throws UnmarshallingException; /** * @return the SAML signature. */ public Signature getSAMLSignature(); /** * Populates the attributes. * * @param attributeTable */ public void populateAttributeTable(Map attributeTable); /** * Issuer of the SAML token * * @return */ public String getIssuerName();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -