Searched refs:xmlString (Results 26 - 50 of 212) sorted by relevance

123456789

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
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);
H A DExtensionsImpl.java77 * @param xmlString the XML String representation of this object.
80 public ExtensionsImpl(String xmlString) throws SAML2Exception { argument
82 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
141 StringBuffer xmlString = new StringBuffer(500);
142 xmlString.append(SAML2Constants.START_TAG);
144 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
146 xmlString.append(SAML2Constants.EXTENSIONS);
148 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
150 xmlString.append(SAML2Constants.END_TAG);
155 xmlString
[all...]
H A DStatusDetailImpl.java78 * @param xmlString the XML String representation of this object.
81 public StatusDetailImpl(String xmlString) throws SAML2Exception { argument
83 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
145 StringBuffer xmlString = new StringBuffer(500);
146 xmlString.append(SAML2Constants.START_TAG);
148 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
150 xmlString.append(SAML2Constants.STATUS_DETAIL);
152 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
154 xmlString.append(SAML2Constants.END_TAG);
159 xmlString
[all...]
H A DLogoutResponseImpl.java81 * @param xmlString the XML String representation of this object.
84 public LogoutResponseImpl(String xmlString) throws SAML2Exception { argument
86 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
93 signedXMLString = xmlString;
128 StringBuffer xmlString = new StringBuffer(1000);
129 xmlString.append(SAML2Constants.START_TAG);
131 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
133 xmlString.append(SAML2Constants.LOGOUT_RESPONSE)
136 xmlString.append(super.toXMLString(includeNSPrefix,declareNS));
138 xmlString
[all...]
H A DScopingImpl.java84 * @param xmlString XML String Representation of <code>Scoping</code>
89 public ScopingImpl(String xmlString) throws SAML2Exception { argument
90 Document xmlDocument = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
199 StringBuilder xmlString = new StringBuilder(300);
200 xmlString.append(SAML2Constants.START_TAG);
202 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
204 xmlString.append(SAML2Constants.SCOPING);
207 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
211 xmlString.append(SAML2Constants.SPACE)
217 xmlString
[all...]
H A DStatusImpl.java78 * @param xmlString the XML String representation of this object.
81 public StatusImpl(String xmlString) throws SAML2Exception { argument
83 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
199 StringBuffer xmlString = new StringBuffer(500);
200 xmlString.append(SAML2Constants.START_TAG);
202 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
204 xmlString.append(SAML2Constants.STATUS);
206 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
208 xmlString.append(SAML2Constants.END_TAG);
210 xmlString
[all...]
H A DLogoutRequestImpl.java99 * @param xmlString the XML String representation of this object.
102 public LogoutRequestImpl(String xmlString) throws SAML2Exception { argument
104 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
111 signedXMLString = xmlString;
308 StringBuffer xmlString = new StringBuffer(1000);
309 xmlString.append(SAML2Constants.START_TAG);
311 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
313 xmlString.append(SAML2Constants.LOGOUT_REQUEST)
317 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR)
322 xmlString
[all...]
H A DIDPListImpl.java83 * @param xmlString the XML String Representation of
88 public IDPListImpl(String xmlString) throws SAML2Exception { argument
90 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
175 StringBuffer xmlString = new StringBuffer(150);
176 xmlString.append(SAML2Constants.START_TAG);
178 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
180 xmlString.append(SAML2Constants.IDPLIST).append(SAML2Constants.SPACE);
183 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
185 xmlString.append(SAML2Constants.END_TAG)
198 xmlString
[all...]
H A DAuthnRequestImpl.java100 * @param xmlString the XML String.
104 public AuthnRequestImpl(String xmlString) throws SAML2Exception { argument
106 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
113 signedXMLString = xmlString;
464 StringBuffer xmlString = new StringBuffer(1000);
465 xmlString.append(SAML2Constants.START_TAG);
467 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
469 xmlString.append(SAML2Constants.AUTHNREQUEST)
473 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR)
478 xmlString
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlsig/
H A DSigProvider.java50 * @param xmlString String representing an XML document to be signed
61 String xmlString,
70 * @param xmlString String representing an signed XML document.
79 String xmlString,
60 sign( String xmlString, String idValue, PrivateKey privateKey, X509Certificate cert ) argument
78 verify( String xmlString, String idValue, Set<X509Certificate> verificationCerts ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlsig/
H A DSigProvider.java50 * @param xmlString String representing an XML document to be signed
61 String xmlString,
70 * @param xmlString String representing an signed XML document.
79 String xmlString,
60 sign( String xmlString, String idValue, PrivateKey privateKey, X509Certificate cert ) argument
78 verify( String xmlString, String idValue, Set<X509Certificate> verificationCerts ) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DExtensionsImpl.java77 * @param xmlString the XML String representation of this object.
80 public ExtensionsImpl(String xmlString) throws SAML2Exception { argument
82 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
141 StringBuffer xmlString = new StringBuffer(500);
142 xmlString.append(SAML2Constants.START_TAG);
144 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
146 xmlString.append(SAML2Constants.EXTENSIONS);
148 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
150 xmlString.append(SAML2Constants.END_TAG);
155 xmlString
[all...]
H A DStatusDetailImpl.java78 * @param xmlString the XML String representation of this object.
81 public StatusDetailImpl(String xmlString) throws SAML2Exception { argument
83 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
145 StringBuffer xmlString = new StringBuffer(500);
146 xmlString.append(SAML2Constants.START_TAG);
148 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
150 xmlString.append(SAML2Constants.STATUS_DETAIL);
152 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
154 xmlString.append(SAML2Constants.END_TAG);
159 xmlString
[all...]
H A DLogoutResponseImpl.java81 * @param xmlString the XML String representation of this object.
84 public LogoutResponseImpl(String xmlString) throws SAML2Exception { argument
86 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
93 signedXMLString = xmlString;
128 StringBuffer xmlString = new StringBuffer(1000);
129 xmlString.append(SAML2Constants.START_TAG);
131 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
133 xmlString.append(SAML2Constants.LOGOUT_RESPONSE)
136 xmlString.append(super.toXMLString(includeNSPrefix,declareNS));
138 xmlString
[all...]
H A DScopingImpl.java84 * @param xmlString XML String Representation of <code>Scoping</code>
89 public ScopingImpl(String xmlString) throws SAML2Exception { argument
90 Document xmlDocument = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
199 StringBuilder xmlString = new StringBuilder(300);
200 xmlString.append(SAML2Constants.START_TAG);
202 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
204 xmlString.append(SAML2Constants.SCOPING);
207 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
211 xmlString.append(SAML2Constants.SPACE)
217 xmlString
[all...]
H A DStatusImpl.java78 * @param xmlString the XML String representation of this object.
81 public StatusImpl(String xmlString) throws SAML2Exception { argument
83 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
199 StringBuffer xmlString = new StringBuffer(500);
200 xmlString.append(SAML2Constants.START_TAG);
202 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
204 xmlString.append(SAML2Constants.STATUS);
206 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
208 xmlString.append(SAML2Constants.END_TAG);
210 xmlString
[all...]
H A DLogoutRequestImpl.java99 * @param xmlString the XML String representation of this object.
102 public LogoutRequestImpl(String xmlString) throws SAML2Exception { argument
104 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
111 signedXMLString = xmlString;
308 StringBuffer xmlString = new StringBuffer(1000);
309 xmlString.append(SAML2Constants.START_TAG);
311 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
313 xmlString.append(SAML2Constants.LOGOUT_REQUEST)
317 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR)
322 xmlString
[all...]
H A DIDPListImpl.java83 * @param xmlString the XML String Representation of
88 public IDPListImpl(String xmlString) throws SAML2Exception { argument
90 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
175 StringBuffer xmlString = new StringBuffer(150);
176 xmlString.append(SAML2Constants.START_TAG);
178 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
180 xmlString.append(SAML2Constants.IDPLIST).append(SAML2Constants.SPACE);
183 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
185 xmlString.append(SAML2Constants.END_TAG)
198 xmlString
[all...]
H A DAuthnRequestImpl.java100 * @param xmlString the XML String.
104 public AuthnRequestImpl(String xmlString) throws SAML2Exception { argument
106 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
113 signedXMLString = xmlString;
464 StringBuffer xmlString = new StringBuffer(1000);
465 xmlString.append(SAML2Constants.START_TAG);
467 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
469 xmlString.append(SAML2Constants.AUTHNREQUEST)
473 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR)
478 xmlString
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/share/
H A DAuthXMLUtils.java380 StringBuilder xmlString = new StringBuilder();
381 xmlString.append(AuthXMLTags.CALLBACKS_BEGIN)
393 xmlString.append(getHiddenValueCallbackXML(hiddenValueCallback));
396 xmlString.append(getNameCallbackXML(nameCallback));
400 xmlString.append(getPasswordCallbackXML(passwordCallback));
403 xmlString.append(getChoiceCallbackXML(choiceCallback));
407 xmlString.append(getConfirmationCallbackXML(conCallback));
411 xmlString.append(getTextInputCallbackXML(textInputCallback));
415 xmlString.append(getTextOutputCallbackXML(textOutputCallback));
419 xmlString
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/share/
H A DAuthXMLUtils.java380 StringBuilder xmlString = new StringBuilder();
381 xmlString.append(AuthXMLTags.CALLBACKS_BEGIN)
393 xmlString.append(getHiddenValueCallbackXML(hiddenValueCallback));
396 xmlString.append(getNameCallbackXML(nameCallback));
400 xmlString.append(getPasswordCallbackXML(passwordCallback));
403 xmlString.append(getChoiceCallbackXML(choiceCallback));
407 xmlString.append(getConfirmationCallbackXML(conCallback));
411 xmlString.append(getTextInputCallbackXML(textInputCallback));
415 xmlString.append(getTextOutputCallbackXML(textOutputCallback));
419 xmlString
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLResponse.java373 StringBuffer xmlString = new StringBuffer();
384 xmlString.append(MessageFormat.format(
394 xmlString.append(createXMLErrorString());
397 xmlString.append(createLoginStatusString());
404 xmlString.append(createLoginStatusString());
415 xmlString.append(createLoginStatusString());
421 xmlString.append(AuthXMLTags.GET_REQS_BEGIN);
422 xmlString.append(xmlCallback);
423 xmlString.append(AuthXMLTags.GET_REQS_END);
424 addRemoteRequestResponse(xmlString);
590 addRemoteRequestResponse(StringBuffer xmlString) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLResponse.java373 StringBuffer xmlString = new StringBuffer();
384 xmlString.append(MessageFormat.format(
394 xmlString.append(createXMLErrorString());
397 xmlString.append(createLoginStatusString());
404 xmlString.append(createLoginStatusString());
415 xmlString.append(createLoginStatusString());
421 xmlString.append(AuthXMLTags.GET_REQS_BEGIN);
422 xmlString.append(xmlCallback);
423 xmlString.append(AuthXMLTags.GET_REQS_END);
424 addRemoteRequestResponse(xmlString);
590 addRemoteRequestResponse(StringBuffer xmlString) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusDetailImpl.java69 String xmlString = "<xacml-context:StatusDetail xmlns:xacml-context="
71 element = new StatusDetailImpl(xmlString).getElement();
155 String xmlString = null;
176 xmlString = XMLUtils.print(element) + "\n";
188 xmlString = sb.toString();
190 return xmlString;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusDetailImpl.java69 String xmlString = "<xacml-context:StatusDetail xmlns:xacml-context="
71 element = new StatusDetailImpl(xmlString).getElement();
155 String xmlString = null;
176 xmlString = XMLUtils.print(element) + "\n";
188 xmlString = sb.toString();
190 return xmlString;

Completed in 64 milliseconds

123456789