[java-opensaml COMMIT] in /trunk: opensaml-saml-api/src/main/java/org/opensaml/saml/saml2/wssecurity/ opensaml-saml-a...

noreply at shibboleth.net noreply at shibboleth.net
Wed Jun 10 18:45:45 EDT 2015


Author: putmanb
Date: Wed Jun 10 18:45:44 2015
New Revision: 4298

URL: http://svn.shibboleth.net/view/java-opensaml?rev=4298&view=rev
Log:
Add context and outbound handler support for WS-Addressing RelatesTo.
Add context and outbound handler support for WS-Security Timestamp.
Add WSSecurityContext and port delegation interface and base classes for representing WS-Security tokens.
Add SAML 2 WS-Security token type. 

Added:
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml2/wssecurity/
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/saml2/wssecurity/SAML20AssertionToken.java   (with props)
    trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wssecurity/messaging/
    trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wssecurity/messaging/AbstractToken.java   (with props)
    trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wssecurity/messaging/Token.java   (with props)
    trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wssecurity/messaging/WSSecurityContext.java   (with props)
    trunk/opensaml-soap-impl/src/main/java/org/opensaml/soap/wsaddressing/messaging/impl/AddRelatesToHandler.java   (with props)
    trunk/opensaml-soap-impl/src/main/java/org/opensaml/soap/wssecurity/messaging/
    trunk/opensaml-soap-impl/src/main/java/org/opensaml/soap/wssecurity/messaging/impl/
    trunk/opensaml-soap-impl/src/main/java/org/opensaml/soap/wssecurity/messaging/impl/AddTimestampHandler.java   (with props)
    trunk/opensaml-soap-impl/src/test/java/org/opensaml/soap/wsaddressing/messaging/impl/AddRelatesToHandlerTest.java   (with props)
    trunk/opensaml-soap-impl/src/test/java/org/opensaml/soap/wssecurity/messaging/
    trunk/opensaml-soap-impl/src/test/java/org/opensaml/soap/wssecurity/messaging/impl/
    trunk/opensaml-soap-impl/src/test/java/org/opensaml/soap/wssecurity/messaging/impl/AddTimestampHandlerTest.java   (with props)
Modified:
    trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wsaddressing/messaging/context/WSAddressingContext.java

Modified: trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wsaddressing/messaging/context/WSAddressingContext.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wsaddressing/messaging/context/WSAddressingContext.java?rev=4298&r1=4297&r2=4298&view=diff
==============================================================================
--- trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wsaddressing/messaging/context/WSAddressingContext.java	(original)
+++ trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/wsaddressing/messaging/context/WSAddressingContext.java	Wed Jun 10 18:45:44 2015
@@ -33,6 +33,12 @@
     
     /** The MessageID URI value. */
     private String messageIDURI;
+    
+    /** The RelatesTo URI value. */
+    private String relatesToURI;
+    
+    /** The RelatesTo RelationshipType attribute value. */
+    private String relatesToRelationshipType;
     
     /**
      * Get the Action URI value.
@@ -70,4 +76,40 @@
         messageIDURI = StringSupport.trimOrNull(uri);
     }
 
+    /**
+     * Get the RelatesTo URI value.
+     * 
+     * @return the RelatesTo URI
+     */
+    public String getRelatesToURI() {
+        return relatesToURI;
+    }
+
+    /**
+     * Set the RelatesTo URI value.
+     * 
+     * @param uri the RelatesTo URI value
+     */
+    public void setRelatesToURI(String uri) {
+        relatesToURI = StringSupport.trimOrNull(uri);
+    }
+
+    /**
+     * Get the RelatesTo RelationshipType attribute value.
+     * 
+     * @return the RelatesTo RelationshipType attribute value
+     */
+    public String getRelatesToRelationshipType() {
+        return relatesToRelationshipType;
+    }
+
+    /**
+     * Get the RelatesTo RelationshipType attribute value.
+     * 
+     * @param value the RelatesTo RelationshipType attribute value
+     */
+    public void setRelatesToRelationshipType(String value) {
+        relatesToRelationshipType = StringSupport.trimOrNull(value);
+    }
+
 }



More information about the commits mailing list