You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2019/02/06 17:53:51 UTC

[cxf] branch master updated: Updating the XACML documentation

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new a5e98a2  Updating the XACML documentation
a5e98a2 is described below

commit a5e98a2d6e4d2bcecdd4bee287688ae66cc27c9b
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Feb 6 17:53:27 2019 +0000

    Updating the XACML documentation
---
 .../rt/security/saml/xacml2/DefaultXACMLRequestBuilder.java   | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/rt/security-saml/src/main/java/org/apache/cxf/rt/security/saml/xacml2/DefaultXACMLRequestBuilder.java b/rt/security-saml/src/main/java/org/apache/cxf/rt/security/saml/xacml2/DefaultXACMLRequestBuilder.java
index 5335941..1fa959c 100644
--- a/rt/security-saml/src/main/java/org/apache/cxf/rt/security/saml/xacml2/DefaultXACMLRequestBuilder.java
+++ b/rt/security-saml/src/main/java/org/apache/cxf/rt/security/saml/xacml2/DefaultXACMLRequestBuilder.java
@@ -41,19 +41,18 @@ import org.opensaml.xacml.ctx.SubjectType;
 /**
  * This class constructs an XACML 2.0 Request given a Principal, list of roles and MessageContext,
  * following the SAML 2.0 profile of XACML 2.0. The principal name is inserted as the Subject ID,
- * and the list of roles associated with that principal are inserted as Subject roles. The action
- * to send defaults to "execute".
+ * and the list of roles associated with that principal are inserted as Subject roles. The current
+ * DateTime is also sent in an Environment, however this can be disabled via configuration.
  *
  * For a SOAP Service, the resource-id Attribute refers to the
  * "{serviceNamespace}serviceName#{operationNamespace}operationName" String (shortened to
  * "{serviceNamespace}serviceName#operationName" if the namespaces are identical). The
  * "{serviceNamespace}serviceName", "{operationNamespace}operationName" and resource URI are also
- * sent to simplify processing at the PDP side.
+ * sent to simplify processing at the PDP side. The action to send defaults to "execute".
  *
  * For a REST service the request URL is the resource. You can also configure the ability to
- * send the truncated request URI instead for a SOAP or REST service. The current DateTime is
- * also sent in an Environment, however this can be disabled via configuration.
- *
+ * send the truncated request URI instead for a SOAP or REST service. The action to send defaults
+ * to the HTTP verb.
  */
 public class DefaultXACMLRequestBuilder implements XACMLRequestBuilder {