Searched refs:xmlString (Results 1 - 25 of 212) sorted by relevance

123456789

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DEncryptedElementImpl.java57 protected String xmlString = null; field in class:EncryptedElementImpl
69 return xmlString;
85 return xmlString;
H A DEncryptedAttributeImpl.java58 private String xmlString = null; field in class:EncryptedAttributeImpl
95 xmlString = XMLUtils.print(element);
102 public EncryptedAttributeImpl(String xmlString) argument
105 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
111 this.xmlString = xmlString;
116 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
133 return xmlString;
149 return xmlString;
H A DEncryptedAssertionImpl.java91 xmlString = XMLUtils.print(element);
98 public EncryptedAssertionImpl(String xmlString) argument
101 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
107 this.xmlString = xmlString;
112 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
H A DEncryptedIDImpl.java96 xmlString = XMLUtils.print(element);
103 public EncryptedIDImpl(String xmlString) argument
106 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
112 this.xmlString = xmlString;
117 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DEncryptedElementImpl.java57 protected String xmlString = null; field in class:EncryptedElementImpl
69 return xmlString;
85 return xmlString;
H A DEncryptedAttributeImpl.java58 private String xmlString = null; field in class:EncryptedAttributeImpl
95 xmlString = XMLUtils.print(element);
102 public EncryptedAttributeImpl(String xmlString) argument
105 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
111 this.xmlString = xmlString;
116 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
133 return xmlString;
149 return xmlString;
H A DEncryptedAssertionImpl.java91 xmlString = XMLUtils.print(element);
98 public EncryptedAssertionImpl(String xmlString) argument
101 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
107 this.xmlString = xmlString;
112 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
H A DEncryptedIDImpl.java96 xmlString = XMLUtils.print(element);
103 public EncryptedIDImpl(String xmlString) argument
106 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
112 this.xmlString = xmlString;
117 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DSessionIndexImpl.java91 StringBuffer xmlString = new StringBuffer(500);
92 xmlString.append(SAML2Constants.START_TAG);
94 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
96 xmlString.append(SAML2Constants.SESSION_INDEX);
98 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
100 xmlString.append(SAML2Constants.END_TAG);
102 xmlString.append(sessionValue);
104 xmlString.append(SAML2Constants.SAML2_END_TAG)
108 xmlStr = xmlString.toString();
H A DStatusMessageImpl.java90 StringBuffer xmlString = new StringBuffer(500);
91 xmlString.append(SAML2Constants.START_TAG);
93 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
95 xmlString.append(SAML2Constants.STATUS_MESSAGE);
97 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
99 xmlString.append(SAML2Constants.END_TAG);
101 xmlString.append(SAML2Constants.NEWLINE)
104 xmlString.append(SAML2Constants.NEWLINE)
109 xmlStr = xmlString.toString();
H A DRequesterIDImpl.java74 * @param xmlString XML String Representation of <code>RequesterID</code>
78 public RequesterIDImpl(String xmlString) throws SAML2Exception { argument
80 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
138 StringBuffer xmlString = new StringBuffer(100);
139 xmlString.append(SAML2Constants.START_TAG);
141 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
143 xmlString.append(SAML2Constants.REQUESTERID);
146 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
148 xmlString.append(SAML2Constants.END_TAG)
156 reqIDXMLString = xmlString
[all...]
H A DStatusCodeImpl.java75 * @param xmlString the XML String representation of this object.
78 public StatusCodeImpl(String xmlString) throws SAML2Exception { argument
80 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
168 StringBuffer xmlString = new StringBuffer(500);
169 xmlString.append(SAML2Constants.START_TAG);
171 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
173 xmlString.append(SAML2Constants.STATUS_CODE);
175 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
177 xmlString.append(SAML2Constants.SPACE);
179 xmlString
[all...]
H A DGetCompleteImpl.java73 * @param xmlString the XML String.
76 public GetCompleteImpl(String xmlString) throws SAML2Exception { argument
78 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
137 StringBuffer xmlString = new StringBuffer(100);
138 xmlString.append(SAML2Constants.START_TAG);
140 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
142 xmlString.append(SAML2Constants.GETCOMPLETE);
145 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
147 xmlString.append(SAML2Constants.END_TAG)
153 xmlElementStr=xmlString
[all...]
H A DIDPEntryImpl.java76 * @param xmlString XML Representation of the <code>IDPEntry<code> object.
80 public IDPEntryImpl(String xmlString) throws SAML2Exception { argument
82 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
195 StringBuffer xmlString = new StringBuffer(100);
196 xmlString.append(SAML2Constants.START_TAG);
198 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
200 xmlString.append(SAML2Constants.IDPENTRY);
203 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
205 xmlString.append(SAML2Constants.SPACE)
213 xmlString
[all...]
H A DNameIDPolicyImpl.java76 * @param xmlString XML String Representation of <code>NameIDPolicy</code>
81 public NameIDPolicyImpl(String xmlString) throws SAML2Exception { argument
83 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
195 StringBuffer xmlString = new StringBuffer(150);
196 xmlString.append(SAML2Constants.START_TAG);
198 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
200 xmlString.append(SAML2Constants.NAMEIDPOLICY)
204 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
208 xmlString.append(SAML2Constants.SPACE)
215 xmlString
[all...]
H A DNewEncryptedIDImpl.java98 xmlString = XMLUtils.print(element);
104 * @param xmlString XML Representation of
109 public NewEncryptedIDImpl(String xmlString) argument
111 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
117 this.xmlString = xmlString;
122 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DSessionIndexImpl.java91 StringBuffer xmlString = new StringBuffer(500);
92 xmlString.append(SAML2Constants.START_TAG);
94 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
96 xmlString.append(SAML2Constants.SESSION_INDEX);
98 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
100 xmlString.append(SAML2Constants.END_TAG);
102 xmlString.append(sessionValue);
104 xmlString.append(SAML2Constants.SAML2_END_TAG)
108 xmlStr = xmlString.toString();
H A DStatusMessageImpl.java90 StringBuffer xmlString = new StringBuffer(500);
91 xmlString.append(SAML2Constants.START_TAG);
93 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
95 xmlString.append(SAML2Constants.STATUS_MESSAGE);
97 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
99 xmlString.append(SAML2Constants.END_TAG);
101 xmlString.append(SAML2Constants.NEWLINE)
104 xmlString.append(SAML2Constants.NEWLINE)
109 xmlStr = xmlString.toString();
H A DRequesterIDImpl.java74 * @param xmlString XML String Representation of <code>RequesterID</code>
78 public RequesterIDImpl(String xmlString) throws SAML2Exception { argument
80 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
138 StringBuffer xmlString = new StringBuffer(100);
139 xmlString.append(SAML2Constants.START_TAG);
141 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
143 xmlString.append(SAML2Constants.REQUESTERID);
146 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
148 xmlString.append(SAML2Constants.END_TAG)
156 reqIDXMLString = xmlString
[all...]
H A DStatusCodeImpl.java75 * @param xmlString the XML String representation of this object.
78 public StatusCodeImpl(String xmlString) throws SAML2Exception { argument
80 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
168 StringBuffer xmlString = new StringBuffer(500);
169 xmlString.append(SAML2Constants.START_TAG);
171 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
173 xmlString.append(SAML2Constants.STATUS_CODE);
175 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
177 xmlString.append(SAML2Constants.SPACE);
179 xmlString
[all...]
H A DGetCompleteImpl.java73 * @param xmlString the XML String.
76 public GetCompleteImpl(String xmlString) throws SAML2Exception { argument
78 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
137 StringBuffer xmlString = new StringBuffer(100);
138 xmlString.append(SAML2Constants.START_TAG);
140 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
142 xmlString.append(SAML2Constants.GETCOMPLETE);
145 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
147 xmlString.append(SAML2Constants.END_TAG)
153 xmlElementStr=xmlString
[all...]
H A DIDPEntryImpl.java76 * @param xmlString XML Representation of the <code>IDPEntry<code> object.
80 public IDPEntryImpl(String xmlString) throws SAML2Exception { argument
82 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
195 StringBuffer xmlString = new StringBuffer(100);
196 xmlString.append(SAML2Constants.START_TAG);
198 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
200 xmlString.append(SAML2Constants.IDPENTRY);
203 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
205 xmlString.append(SAML2Constants.SPACE)
213 xmlString
[all...]
H A DNameIDPolicyImpl.java78 * @param xmlString XML String Representation of <code>NameIDPolicy</code>
83 public NameIDPolicyImpl(String xmlString) throws SAML2Exception { argument
85 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
196 StringBuffer xmlString = new StringBuffer(150);
197 xmlString.append(SAML2Constants.START_TAG);
199 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
201 xmlString.append(SAML2Constants.NAMEIDPOLICY)
205 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
209 xmlString.append(SAML2Constants.SPACE)
216 xmlString
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlenc/
H A DEncProvider.java47 * @param xmlString String representing an XML document whose root
70 String xmlString,
80 * @param xmlString String representing an XML document whose root
104 String xmlString,
117 * @param xmlString String representing an XML document with encrypted
124 public SecretKey getSecretKey(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
128 * @param xmlString String representing an XML document with encrypted
138 public Element decrypt(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
69 encrypt( String xmlString, Key recipientPublicKey, String dataEncAlgorithm, int dataEncStrength, String recipientEntityID, String outerElementName) argument
103 encrypt( String xmlString, Key recipientPublicKey, SecretKey secretKey, String dataEncAlgorithm, int dataEncStrength, String recipientEntityID, String outerElementName) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlenc/
H A DEncProvider.java47 * @param xmlString String representing an XML document whose root
70 String xmlString,
80 * @param xmlString String representing an XML document whose root
104 String xmlString,
117 * @param xmlString String representing an XML document with encrypted
124 public SecretKey getSecretKey(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
128 * @param xmlString String representing an XML document with encrypted
138 public Element decrypt(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
69 encrypt( String xmlString, Key recipientPublicKey, String dataEncAlgorithm, int dataEncStrength, String recipientEntityID, String outerElementName) argument
103 encrypt( String xmlString, Key recipientPublicKey, SecretKey secretKey, String dataEncAlgorithm, int dataEncStrength, String recipientEntityID, String outerElementName) argument

Completed in 75 milliseconds

123456789