Searched defs:xmlString (Results 26 - 50 of 162) sorted by relevance

1234567

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
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);
H A DAssertionIDRefImpl.java80 * @param xmlString A <code>String</code> representing a
84 public AssertionIDRefImpl(String xmlString) throws SAML2Exception argument
86 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2Utils.debug);
H A DKeyInfoConfirmationDataImpl.java71 public KeyInfoConfirmationDataImpl(String xmlString) throws SAML2Exception { argument
73 xmlString, SAML2SDKUtils.debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
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 DManageNameIDResponseImpl.java87 * @param xmlString XML Representation of
92 public ManageNameIDResponseImpl(String xmlString) throws SAML2Exception { argument
93 Document doc = XMLUtils.toDOMDocument(xmlString, SAMLUtils.debug);
99 signedXMLString = xmlString;
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 DArtifactResolveImpl.java263 public ArtifactResolveImpl(String xmlString) argument
265 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
272 signedXMLString = xmlString;
H A DArtifactResponseImpl.java270 public ArtifactResponseImpl(String xmlString) argument
272 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
279 signedXMLString = xmlString;
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 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...]
/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-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionRequestParser.java69 * @param xmlString An XML String representing the request.
71 public SessionRequestParser(String xmlString) { argument
72 document = XMLUtils.toDOMDocument(xmlString, debug);
H A DSessionResponseParser.java67 * @param xmlString string representing the response
70 public SessionResponseParser(String xmlString) { argument
72 .toDOMDocument(xmlString, SessionRequestParser.debug);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionIDRefImpl.java80 * @param xmlString A <code>String</code> representing a
84 public AssertionIDRefImpl(String xmlString) throws SAML2Exception argument
86 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2Utils.debug);
H A DKeyInfoConfirmationDataImpl.java71 public KeyInfoConfirmationDataImpl(String xmlString) throws SAML2Exception { argument
73 xmlString, SAML2SDKUtils.debug);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DArtifactResolveImpl.java263 public ArtifactResolveImpl(String xmlString) argument
265 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
272 signedXMLString = xmlString;
H A DArtifactResponseImpl.java270 public ArtifactResponseImpl(String xmlString) argument
272 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
279 signedXMLString = xmlString;
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 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 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 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...]
/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-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlsig/
H A DFMSigProvider.java111 * @param xmlString String representing an XML document to be signed
122 String xmlString,
129 if (xmlString == null ||
130 xmlString.length() == 0 ||
143 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
236 String xmlString,
242 if (xmlString == null ||
243 xmlString.length() == 0 ||
249 "Either input xmlString or idValue is null.");
254 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtil
121 sign( String xmlString, String idValue, PrivateKey privateKey, X509Certificate cert ) argument
235 verify( String xmlString, String idValue, Set<X509Certificate> verificationCerts ) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionRequestParser.java71 * @param xmlString An XML String representing the request.
73 public SessionRequestParser(String xmlString) { argument
74 document = XMLUtils.toDOMDocument(xmlString, debug);
H A DSessionResponseParser.java67 * @param xmlString string representing the response
70 public SessionResponseParser(String xmlString) { argument
72 .toDOMDocument(xmlString, SessionRequestParser.debug);

Completed in 48 milliseconds

1234567