Searched defs:xmlString (Results 76 - 100 of 162) sorted by relevance

1234567

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DActionImpl.java153 public ActionImpl(String xmlString) argument
156 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
H A DAttributeStatementImpl.java177 public AttributeStatementImpl(String xmlString) throws SAML2Exception { argument
178 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
H A DSubjectLocalityImpl.java131 public SubjectLocalityImpl(String xmlString) argument
134 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRelayStateImpl.java73 * @param xmlString the XML String representation of this object.
76 public ECPRelayStateImpl(String xmlString) throws SAML2Exception { argument
78 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
H A DECPResponseImpl.java73 * @param xmlString the XML String representation of this object.
76 public ECPResponseImpl(String xmlString) throws SAML2Exception { argument
78 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAssertionIDRequestImpl.java90 * @param xmlString the XML String.
94 public AssertionIDRequestImpl(String xmlString) throws SAML2Exception { argument
95 Document xmlDocument = XMLUtils.toDOMDocument(xmlString,
104 signedXMLString = xmlString;
H A DAttributeQueryImpl.java79 * @param xmlString the XML String.
83 public AttributeQueryImpl(String xmlString) throws SAML2Exception { argument
85 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
93 signedXMLString = xmlString;
H A DAuthnQueryImpl.java78 * @param xmlString the XML String.
82 public AuthnQueryImpl(String xmlString) throws SAML2Exception { argument
84 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
92 signedXMLString = xmlString;
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 DNameIDMappingResponseImpl.java82 * @param xmlString XML representation of the
87 public NameIDMappingResponseImpl(String xmlString) throws SAML2Exception { argument
88 Document doc = XMLUtils.toDOMDocument(xmlString, SAMLUtils.debug);
94 signedXMLString = xmlString;
H A DRequestedAuthnContextImpl.java96 * @param xmlString the <code>RequestedAuthnContext</code> XML String.
99 public RequestedAuthnContextImpl(String xmlString) throws SAML2Exception { argument
100 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
H A DResponseImpl.java305 * @param xmlString the Response String..
308 public ResponseImpl(String xmlString) argument
310 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
317 signedXMLString = xmlString;
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 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 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...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlenc/
H A DFMEncProvider.java96 * @param xmlString String representing an XML document whose root
119 String xmlString,
128 return encrypt(xmlString, recipientPublicKey, null, dataEncAlgorithm,
135 * @param xmlString String representing an XML document whose root
159 String xmlString,
179 if (xmlString==null ||
180 xmlString.length()==0 ||
217 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
219 SAML2SDKUtils.debug.error("{} : the XML '{}' String can't be parsed.", classMethod, xmlString);
228 SAML2SDKUtils.debug.error("{} : the XML '{}' String is empty.", classMethod, xmlString);
118 encrypt( String xmlString, Key recipientPublicKey, String dataEncAlgorithm, int dataEncStrength, String recipientEntityID, String outerElementName) argument
158 encrypt( String xmlString, Key recipientPublicKey, SecretKey secretKey, String dataEncAlgorithm, int dataEncStrength, String recipientEntityID, String outerElementName) argument
391 getSecretKey(String xmlString, Set<PrivateKey> privateKeys) argument
501 decrypt(String xmlString, Set<PrivateKey> privateKeys) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/saml2/impl/
H A DXACMLAuthzDecisionQueryImpl.java110 private String xmlString; field in class:XACMLAuthzDecisionQueryImpl
148 this.xmlString = xml;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/paos/
H A DPAOSRequest.java89 * @param xmlString the XML String representation of this object.
92 public PAOSRequest(String xmlString) throws PAOSException { argument
94 XMLUtils.toDOMDocument(xmlString, PAOSUtils.debug);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DSAMLClient.java493 * @param xmlString A String representing a string of SOAPMessage
499 private static Response getSAMLResponse(String xmlString) argument
501 if (xmlString == null || xmlString.length() == 0) {
505 Document doc = XMLUtils.toDOMDocument(xmlString, SAMLUtils.debug);
769 String xmlString = createSOAPMessage(req);
773 SAMLUtils.debug.message("SENDING message: \n " + xmlString);
777 "sendingSAMLRequest"), xmlString};
785 InputStream inbuf = client.call(xmlString, null, null);
808 xmlString
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DResponse.java78 protected String xmlString = null; field in class:Response
95 xmlString, RESPONSE_ID_ATTRIBUTE, issuer);
146 xmlString = this.toString(true, true);
353 xmlString = XMLUtils.print(root);
632 if (signed && (xmlString != null)) {
633 return xmlString;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAuthnContextImpl.java298 public AuthnContextImpl(String xmlString) argument
301 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
H A DAuthnStatementImpl.java238 public AuthnStatementImpl(String xmlString) argument
241 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSOAPCommunicator.java91 * @param xmlString XML string to be put into <code>SOAPMessage</code> body.
98 public SOAPMessage createSOAPMessage(final String xmlString, argument
101 return createSOAPMessage(null, xmlString, isClientMessage);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java81 * @param xmlString the XML String representation of this object.
84 public ECPRequestImpl(String xmlString) throws SAML2Exception { argument
86 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
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...]

Completed in 72 milliseconds

1234567