Searched refs:wsfVersion (Results 1 - 14 of 14) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DDiscoveryClient.java71 private String wsfVersion = Utils.getDefaultWSFVersion(); field in class:DiscoveryClient
218 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
220 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
232 token.setWSFVersion(wsfVersion);
255 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
257 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
302 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
304 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
491 req.setWSFVersion(wsfVersion);
532 * @param wsfVersion th
534 setWSFVersion(String wsfVersion) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DDiscoveryClient.java71 private String wsfVersion = Utils.getDefaultWSFVersion(); field in class:DiscoveryClient
218 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
220 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
232 token.setWSFVersion(wsfVersion);
255 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
257 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
302 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
304 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
491 req.setWSFVersion(wsfVersion);
532 * @param wsfVersion th
534 setWSFVersion(String wsfVersion) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/common/wsse/
H A DBinarySecurityToken.java101 private String wsfVersion = null; field in class:BinarySecurityToken
164 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
166 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
314 if (SOAPBindingConstants.WSF_11_VERSION.equals(wsfVersion)) {
429 return wsfVersion;
437 this.wsfVersion = version;
438 if(wsfVersion != null &&
439 SOAPBindingConstants.WSF_10_VERSION.equals(wsfVersion)) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/common/wsse/
H A DBinarySecurityToken.java101 private String wsfVersion = null; field in class:BinarySecurityToken
164 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
166 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
314 if (SOAPBindingConstants.WSF_11_VERSION.equals(wsfVersion)) {
429 return wsfVersion;
437 this.wsfVersion = version;
438 if(wsfVersion != null &&
439 SOAPBindingConstants.WSF_10_VERSION.equals(wsfVersion)) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DMessage.java253 private String wsfVersion = SOAPBindingConstants.WSF_11_VERSION; field in class:Message
321 wsfVersion = binarySecurityToken.getWSFVersion();
427 wsfVersion)) {
435 wsfVersion)) {
443 wsfVersion)) {
457 wsfVersion)) {
465 wsfVersion)) {
473 wsfVersion)) {
488 wsfVersion)) {
496 wsfVersion)) {
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DMessage.java253 private String wsfVersion = SOAPBindingConstants.WSF_11_VERSION; field in class:Message
321 wsfVersion = binarySecurityToken.getWSFVersion();
427 wsfVersion)) {
435 wsfVersion)) {
443 wsfVersion)) {
457 wsfVersion)) {
465 wsfVersion)) {
473 wsfVersion)) {
488 wsfVersion)) {
496 wsfVersion)) {
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/dst/
H A DDSTClient.java82 private String wsfVersion = Utils.getDefaultWSFVersion(); field in class:DSTClient
373 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
375 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
397 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
399 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
418 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
420 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
467 token.setWSFVersion(wsfVersion);
827 msg.setWSFVersion(wsfVersion);
927 * @param wsfVersion th
929 setWSFVersion(String wsfVersion) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/dst/
H A DDSTClient.java82 private String wsfVersion = Utils.getDefaultWSFVersion(); field in class:DSTClient
373 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
375 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
397 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
399 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
418 wsfVersion = SOAPBindingConstants.WSF_10_VERSION;
420 wsfVersion = SOAPBindingConstants.WSF_11_VERSION;
467 token.setWSFVersion(wsfVersion);
827 msg.setWSFVersion(wsfVersion);
927 * @param wsfVersion th
929 setWSFVersion(String wsfVersion) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/xmlsig/
H A DAMSignatureProvider.java78 private String wsfVersion = null; field in class:AMSignatureProvider
750 * @param wsfVersion the web services version.
756 String algorithm, List ids, String wsfVersion)
777 this.wsfVersion = wsfVersion;
781 if ((wsfVersion != null) &&
782 (wsfVersion.equals(SOAPBindingConstants.WSF_11_VERSION))) {
898 * @param wsfVersion the web services version.
904 String wsfVersion) throws XMLSignatureException {
917 this.wsfVersion
754 signWithWSSSAMLTokenProfile(Document doc, java.security.cert.Certificate cert, String assertionID, String algorithm, List ids, String wsfVersion) argument
902 signWithWSSX509TokenProfile(Document doc, java.security.cert.Certificate cert, String algorithm, List ids, String wsfVersion) argument
1041 verifyXMLSignature(String wsfVersion, String certAlias, Document doc) argument
[all...]
H A DXMLSignatureManager.java444 * @param wsfVersion the web services framework that should be used.
453 String wsfVersion) throws XMLSignatureException {
456 algorithm, ids, wsfVersion);
587 * @param wsfVersion the web services framework that should be used.
595 String algorithm, java.util.List ids, String wsfVersion)
599 wsfVersion);
731 * @param wsfVersion the web services version that should be used.
739 public boolean verifyXMLSignature(String wsfVersion, String certAlias, argument
741 return sp.verifyXMLSignature(wsfVersion, certAlias, document);
450 signWithWSSSAMLTokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String assertionID, String algorithm, java.util.List ids, String wsfVersion) argument
593 signWithWSSX509TokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String algorithm, java.util.List ids, String wsfVersion) argument
H A DSignatureProvider.java329 * @param wsfVersion the web services framework that should be used.
338 String wsfVersion) throws XMLSignatureException;
462 * @param wsfVersion the web services framework that should be used.
470 String algorithm, java.util.List ids, String wsfVersion)
577 * @param wsfVersion the web services framework that should be used.
587 String wsfVersion,
335 signWithWSSSAMLTokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String assertionID, String algorithm, java.util.List ids, String wsfVersion) argument
468 signWithWSSX509TokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String algorithm, java.util.List ids, String wsfVersion) argument
586 verifyXMLSignature( String wsfVersion, String certAlias, org.w3c.dom.Document document ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/xmlsig/
H A DAMSignatureProvider.java90 private String wsfVersion = null; field in class:AMSignatureProvider
766 * @param wsfVersion the web services version.
772 String algorithm, List ids, String wsfVersion)
793 this.wsfVersion = wsfVersion;
797 if ((wsfVersion != null) &&
798 (wsfVersion.equals(SOAPBindingConstants.WSF_11_VERSION))) {
913 * @param wsfVersion the web services version.
919 String wsfVersion) throws XMLSignatureException {
932 this.wsfVersion
770 signWithWSSSAMLTokenProfile(Document doc, java.security.cert.Certificate cert, String assertionID, String algorithm, List ids, String wsfVersion) argument
917 signWithWSSX509TokenProfile(Document doc, java.security.cert.Certificate cert, String algorithm, List ids, String wsfVersion) argument
1055 verifyXMLSignature(String wsfVersion, String certAlias, Document doc) argument
[all...]
H A DXMLSignatureManager.java443 * @param wsfVersion the web services framework that should be used.
452 String wsfVersion) throws XMLSignatureException {
455 algorithm, ids, wsfVersion);
586 * @param wsfVersion the web services framework that should be used.
594 String algorithm, java.util.List ids, String wsfVersion)
598 wsfVersion);
730 * @param wsfVersion the web services version that should be used.
738 public boolean verifyXMLSignature(String wsfVersion, String certAlias, argument
740 return sp.verifyXMLSignature(wsfVersion, certAlias, document);
449 signWithWSSSAMLTokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String assertionID, String algorithm, java.util.List ids, String wsfVersion) argument
592 signWithWSSX509TokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String algorithm, java.util.List ids, String wsfVersion) argument
H A DSignatureProvider.java329 * @param wsfVersion the web services framework that should be used.
338 String wsfVersion) throws XMLSignatureException;
462 * @param wsfVersion the web services framework that should be used.
470 String algorithm, java.util.List ids, String wsfVersion)
577 * @param wsfVersion the web services framework that should be used.
587 String wsfVersion,
335 signWithWSSSAMLTokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String assertionID, String algorithm, java.util.List ids, String wsfVersion) argument
468 signWithWSSX509TokenProfile( org.w3c.dom.Document doc, java.security.cert.Certificate cert, String algorithm, java.util.List ids, String wsfVersion) argument
586 verifyXMLSignature( String wsfVersion, String certAlias, org.w3c.dom.Document document ) argument

Completed in 78 milliseconds