[java-opensaml] 07/12: JPAR-85 - Checkstyle, check final parameters

Tom Zeller tzeller at dragonacea.biz
Thu Aug 10 18:25:56 EDT 2017


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch master
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=ca32a2cf7c721cb52a186b42f312ac6f11fc422b

commit ca32a2cf7c721cb52a186b42f312ac6f11fc422b
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Aug 10 16:53:02 2017 -0500

    JPAR-85 - Checkstyle, check final parameters
---
 .../profile/saml/impl/ReferencedPoliciesTypeImpl.java |  3 ++-
 .../saml/impl/ReferencedPoliciesTypeImplBuilder.java  |  3 ++-
 .../saml/impl/ReferencedPoliciesTypeUnmarshaller.java |  3 ++-
 .../saml/impl/XACMLAuthzDecisionQueryTypeImpl.java    | 19 ++++++++++---------
 .../impl/XACMLAuthzDecisionQueryTypeImplBuilder.java  |  3 ++-
 .../impl/XACMLAuthzDecisionQueryTypeMarshaller.java   |  3 ++-
 .../impl/XACMLAuthzDecisionQueryTypeUnmarshaller.java |  5 +++--
 .../impl/XACMLAuthzDecisionStatementTypeImpl.java     |  8 ++++----
 .../XACMLAuthzDecisionStatementTypeImplBuilder.java   |  3 ++-
 .../XACMLAuthzDecisionStatementTypeUnmarshaller.java  |  3 ++-
 .../profile/saml/impl/XACMLPolicyQueryTypeImpl.java   |  3 ++-
 .../saml/impl/XACMLPolicyQueryTypeImplBuilder.java    |  3 ++-
 .../saml/impl/XACMLPolicyQueryTypeUnmarshaller.java   |  3 ++-
 .../saml/impl/XACMLPolicyStatementTypeImpl.java       |  5 +++--
 .../impl/XACMLPolicyStatementTypeImplBuilder.java     |  3 ++-
 .../impl/XACMLPolicyStatementTypeUnmarshaller.java    |  3 ++-
 16 files changed, 44 insertions(+), 29 deletions(-)

diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImpl.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImpl.java
index 719a21a..3418b8c 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImpl.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImpl.java
@@ -46,7 +46,8 @@ public class ReferencedPoliciesTypeImpl extends AbstractSAMLObject implements Re
      * @param elementLocalName the local name of the XML element this Object represents
      * @param namespacePrefix the prefix for the given namespace
      */
-    protected ReferencedPoliciesTypeImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
+    protected ReferencedPoliciesTypeImpl(final String namespaceURI, final String elementLocalName,
+            final String namespacePrefix) {
         super(namespaceURI, elementLocalName, namespacePrefix);
         policies = new XMLObjectChildrenList<>(this);
         policieSets = new XMLObjectChildrenList<>(this); 
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImplBuilder.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImplBuilder.java
index 36a3afe..5f52e03 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImplBuilder.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeImplBuilder.java
@@ -33,7 +33,8 @@ implements XACMLObjectBuilder<ReferencedPoliciesType>{
     }
 
     /** {@inheritDoc} */
-    public ReferencedPoliciesType buildObject(String namespaceURI, String localName, String namespacePrefix) {
+    public ReferencedPoliciesType buildObject(final String namespaceURI, final String localName,
+            final String namespacePrefix) {
         return new ReferencedPoliciesTypeImpl(namespaceURI,localName,namespacePrefix);
     }
 
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeUnmarshaller.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeUnmarshaller.java
index ec3c9bc..8f7b734 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeUnmarshaller.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/ReferencedPoliciesTypeUnmarshaller.java
@@ -30,7 +30,8 @@ import org.opensaml.xacml.profile.saml.ReferencedPoliciesType;
 public class ReferencedPoliciesTypeUnmarshaller extends AbstractSAMLObjectUnmarshaller {
 
     /** {@inheritDoc} */
-    protected void processChildElement(XMLObject parentObject, XMLObject childObject) throws UnmarshallingException {
+    protected void processChildElement(final XMLObject parentObject, final XMLObject childObject)
+            throws UnmarshallingException {
         ReferencedPoliciesType referencedpoliciesType = (ReferencedPoliciesType) parentObject;
 
         if (childObject instanceof PolicyType) {
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImpl.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImpl.java
index 8a44609..a6b4740 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImpl.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImpl.java
@@ -62,7 +62,8 @@ public class XACMLAuthzDecisionQueryTypeImpl extends RequestAbstractTypeImpl imp
      * @param elementLocalName the local name of the XML element this Object represents
      * @param namespacePrefix the prefix for the given namespace
      */
-    protected XACMLAuthzDecisionQueryTypeImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
+    protected XACMLAuthzDecisionQueryTypeImpl(final String namespaceURI, final String elementLocalName,
+            final String namespacePrefix) {
         super(namespaceURI, elementLocalName, namespacePrefix);
         setElementNamespacePrefix(namespacePrefix);
         policies = new XMLObjectChildrenList<>(this);
@@ -143,12 +144,12 @@ public class XACMLAuthzDecisionQueryTypeImpl extends RequestAbstractTypeImpl imp
     }
 
     /** {@inheritDoc} */
-    public void setCombinePolicies(XSBooleanValue combine) {
+    public void setCombinePolicies(final XSBooleanValue combine) {
         combinePolicies = prepareForAssignment(combinePolicies, combine);
     }
 
     /** {@inheritDoc} */
-    public void setCombinePolicies(Boolean combine) {
+    public void setCombinePolicies(final Boolean combine) {
         if (combine != null) {
             combinePolicies = prepareForAssignment(combinePolicies, new XSBooleanValue(combine, false));
         } else {
@@ -158,12 +159,12 @@ public class XACMLAuthzDecisionQueryTypeImpl extends RequestAbstractTypeImpl imp
     }
 
     /** {@inheritDoc} */
-    public void setInputContextOnly(XSBooleanValue flag) {
+    public void setInputContextOnly(final XSBooleanValue flag) {
         inputContextOnly = prepareForAssignment(inputContextOnly, flag);
     }
 
     /** {@inheritDoc} */
-    public void setInputContextOnly(Boolean flag) {
+    public void setInputContextOnly(final Boolean flag) {
         if (flag != null) {
             inputContextOnly = prepareForAssignment(inputContextOnly, new XSBooleanValue(flag, false));
         } else {
@@ -172,17 +173,17 @@ public class XACMLAuthzDecisionQueryTypeImpl extends RequestAbstractTypeImpl imp
     }
 
     /** {@inheritDoc} */
-    public void setRequest(RequestType req) {
+    public void setRequest(final RequestType req) {
         request = prepareForAssignment(this.request, req);
     }
 
     /** {@inheritDoc} */
-    public void setReturnContext(XSBooleanValue flag) {
+    public void setReturnContext(final XSBooleanValue flag) {
         returnContext = prepareForAssignment(returnContext, flag);
     }
 
     /** {@inheritDoc} */
-    public void setReturnContext(Boolean flag) {
+    public void setReturnContext(final Boolean flag) {
         if (flag != null) {
             returnContext = prepareForAssignment(returnContext, new XSBooleanValue(flag, false));
         } else {
@@ -206,7 +207,7 @@ public class XACMLAuthzDecisionQueryTypeImpl extends RequestAbstractTypeImpl imp
     }
 
     /** {@inheritDoc} */
-    public void setReferencedPolicies(ReferencedPoliciesType pols) {
+    public void setReferencedPolicies(final ReferencedPoliciesType pols) {
         referencedPolicies = prepareForAssignment(referencedPolicies, pols);
     }
 }
\ No newline at end of file
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImplBuilder.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImplBuilder.java
index 696b075..8a4a27d 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImplBuilder.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeImplBuilder.java
@@ -36,7 +36,8 @@ public class XACMLAuthzDecisionQueryTypeImplBuilder extends AbstractSAMLObjectBu
     }
 
     /** {@inheritDoc} */
-    public XACMLAuthzDecisionQueryType buildObject(String namespaceURI, String localName, String namespacePrefix) {
+    public XACMLAuthzDecisionQueryType buildObject(final String namespaceURI, final String localName,
+            final String namespacePrefix) {
         return new XACMLAuthzDecisionQueryTypeImpl(namespaceURI, localName, namespacePrefix);
     }
 }
\ No newline at end of file
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeMarshaller.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeMarshaller.java
index e3be317..a630c2e 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeMarshaller.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeMarshaller.java
@@ -29,7 +29,8 @@ import org.w3c.dom.Element;
 public class XACMLAuthzDecisionQueryTypeMarshaller extends RequestAbstractTypeMarshaller {
 
     /** {@inheritDoc} */
-    protected void marshallAttributes(XMLObject samlObject, Element domElement) throws MarshallingException {
+    protected void marshallAttributes(final XMLObject samlObject, final Element domElement)
+            throws MarshallingException {
         XACMLAuthzDecisionQueryType query = (XACMLAuthzDecisionQueryType) samlObject;
 
         if (query.getInputContextOnlyXSBooleanValue() != null) {
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeUnmarshaller.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeUnmarshaller.java
index b29fe0e..14e6785 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeUnmarshaller.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionQueryTypeUnmarshaller.java
@@ -34,7 +34,8 @@ import org.w3c.dom.Attr;
 public class XACMLAuthzDecisionQueryTypeUnmarshaller extends RequestAbstractTypeUnmarshaller {
 
     /** {@inheritDoc} */
-    protected void processChildElement(XMLObject parentObject, XMLObject childObject) throws UnmarshallingException {
+    protected void processChildElement(final XMLObject parentObject, final XMLObject childObject)
+            throws UnmarshallingException {
         XACMLAuthzDecisionQueryType xacmlauthzdecisionquery = (XACMLAuthzDecisionQueryType) parentObject;
 
         if (childObject instanceof RequestType) {
@@ -51,7 +52,7 @@ public class XACMLAuthzDecisionQueryTypeUnmarshaller extends RequestAbstractType
     }
 
     /** {@inheritDoc} */
-    protected void processAttribute(XMLObject samlObject, Attr attribute) throws UnmarshallingException {
+    protected void processAttribute(final XMLObject samlObject, final Attr attribute) throws UnmarshallingException {
         XACMLAuthzDecisionQueryType authzDS = (XACMLAuthzDecisionQueryType) samlObject;
 
         if (attribute.getLocalName().equals(XACMLAuthzDecisionQueryType.INPUTCONTEXTONLY_ATTRIB_NAME)) {
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImpl.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImpl.java
index 55db2e7..a244f48 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImpl.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImpl.java
@@ -43,8 +43,8 @@ public class XACMLAuthzDecisionStatementTypeImpl extends AbstractSAMLObject impl
      * @param elementLocalName the local name of the XML element this Object represents
      * @param namespacePrefix the prefix for the given namespace
      */
-    protected XACMLAuthzDecisionStatementTypeImpl(String namespaceURI, String elementLocalName,
-            String namespacePrefix) {
+    protected XACMLAuthzDecisionStatementTypeImpl(final String namespaceURI, final String elementLocalName,
+            final String namespacePrefix) {
         super(namespaceURI, elementLocalName, namespacePrefix);
     }
 
@@ -59,12 +59,12 @@ public class XACMLAuthzDecisionStatementTypeImpl extends AbstractSAMLObject impl
     }
 
     /** {@inheritDoc} */
-    public void setRequest(RequestType req) {
+    public void setRequest(final RequestType req) {
         request = prepareForAssignment(request, req);
     }
 
     /** {@inheritDoc} */
-    public void setResponse(ResponseType resp) {
+    public void setResponse(final ResponseType resp) {
         response = prepareForAssignment(response, resp);
     }
 
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImplBuilder.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImplBuilder.java
index 27c65f7..394e8ea 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImplBuilder.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeImplBuilder.java
@@ -36,7 +36,8 @@ public class XACMLAuthzDecisionStatementTypeImplBuilder extends
     }
 
     /** {@inheritDoc} */
-    public XACMLAuthzDecisionStatementType buildObject(String namespaceURI, String localName, String namespacePrefix) {
+    public XACMLAuthzDecisionStatementType buildObject(final String namespaceURI, final String localName,
+            final String namespacePrefix) {
         return new XACMLAuthzDecisionStatementTypeImpl(namespaceURI, localName, namespacePrefix);
     }
 }
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeUnmarshaller.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeUnmarshaller.java
index abfb1ce..1627e86 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeUnmarshaller.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLAuthzDecisionStatementTypeUnmarshaller.java
@@ -30,7 +30,8 @@ import org.opensaml.xacml.profile.saml.XACMLAuthzDecisionStatementType;
 public class XACMLAuthzDecisionStatementTypeUnmarshaller extends AbstractSAMLObjectUnmarshaller {
 
     /** {@inheritDoc} */
-    protected void processChildElement(XMLObject parentObject, XMLObject childObject) throws UnmarshallingException {
+    protected void processChildElement(final XMLObject parentObject, final XMLObject childObject)
+            throws UnmarshallingException {
         XACMLAuthzDecisionStatementType xacmlauthzdecisionstatement = (XACMLAuthzDecisionStatementType) parentObject;
 
         if (childObject instanceof RequestType) {
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImpl.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImpl.java
index 262be09..06a0a37 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImpl.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImpl.java
@@ -42,7 +42,8 @@ public class XACMLPolicyQueryTypeImpl extends RequestAbstractTypeImpl implements
      * @param elementLocalName the local name of the XML element this Object represents
      * @param namespacePrefix the prefix for the given namespace
      */
-    public XACMLPolicyQueryTypeImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
+    public XACMLPolicyQueryTypeImpl(final String namespaceURI, final String elementLocalName,
+            final String namespacePrefix) {
         super(namespaceURI, elementLocalName, namespacePrefix);
         setElementNamespacePrefix(namespacePrefix);
         choiceGroup = new IndexedXMLObjectChildrenList<>(this);
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImplBuilder.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImplBuilder.java
index 5fefe03..f3a9c63 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImplBuilder.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeImplBuilder.java
@@ -34,7 +34,8 @@ public class XACMLPolicyQueryTypeImplBuilder extends AbstractSAMLObjectBuilder<X
     }
 
     /** {@inheritDoc} */
-    public XACMLPolicyQueryType buildObject(String namespaceURI, String localName, String namespacePrefix) {
+    public XACMLPolicyQueryType buildObject(final String namespaceURI, final String localName,
+            final String namespacePrefix) {
         return new XACMLPolicyQueryTypeImpl(namespaceURI, localName, namespacePrefix);
     }
 
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeUnmarshaller.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeUnmarshaller.java
index e34bec2..939f070 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeUnmarshaller.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyQueryTypeUnmarshaller.java
@@ -28,7 +28,8 @@ import org.opensaml.xacml.profile.saml.XACMLPolicyQueryType;
 public class XACMLPolicyQueryTypeUnmarshaller extends RequestAbstractTypeUnmarshaller {
 
     /** {@inheritDoc} */
-    protected void processChildElement(XMLObject parentObject, XMLObject childObject) throws UnmarshallingException {
+    protected void processChildElement(final XMLObject parentObject, final XMLObject childObject)
+            throws UnmarshallingException {
         XACMLPolicyQueryType xacmlpolicyquery = (XACMLPolicyQueryType) parentObject;
 
         if (childObject instanceof RequestType) {
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImpl.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImpl.java
index 89d44eb..ac08cf6 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImpl.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImpl.java
@@ -46,7 +46,8 @@ public class XACMLPolicyStatementTypeImpl extends AbstractSAMLObject implements
      * @param elementLocalName the local name of the XML element this Object represents
      * @param namespacePrefix the prefix for the given namespace
      */
-    protected XACMLPolicyStatementTypeImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
+    protected XACMLPolicyStatementTypeImpl(final String namespaceURI, final String elementLocalName,
+            final String namespacePrefix) {
         super(namespaceURI, elementLocalName, namespacePrefix);
         choiceGroup = new IndexedXMLObjectChildrenList<>(this);
     }
@@ -80,7 +81,7 @@ public class XACMLPolicyStatementTypeImpl extends AbstractSAMLObject implements
     }
 
     /** {@inheritDoc} */
-    public void setReferencedPolicies(ReferencedPoliciesType policies) {
+    public void setReferencedPolicies(final ReferencedPoliciesType policies) {
         referencedPolicies = prepareForAssignment(referencedPolicies, policies);
     }
 }
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImplBuilder.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImplBuilder.java
index 4536e66..ded5bcd 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImplBuilder.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeImplBuilder.java
@@ -35,7 +35,8 @@ public class XACMLPolicyStatementTypeImplBuilder extends AbstractSAMLObjectBuild
     }
 
     /** {@inheritDoc} */
-    public XACMLPolicyStatementType buildObject(String namespaceURI, String localName, String namespacePrefix) {
+    public XACMLPolicyStatementType buildObject(final String namespaceURI, final String localName,
+            final String namespacePrefix) {
         return new XACMLPolicyStatementTypeImpl(namespaceURI, localName, namespacePrefix);
     }
 }
diff --git a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeUnmarshaller.java b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeUnmarshaller.java
index 64cd3ef..cdee8cd 100644
--- a/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeUnmarshaller.java
+++ b/opensaml-xacml-saml-impl/src/main/java/org/opensaml/xacml/profile/saml/impl/XACMLPolicyStatementTypeUnmarshaller.java
@@ -31,7 +31,8 @@ import org.opensaml.xacml.profile.saml.XACMLPolicyStatementType;
 public class XACMLPolicyStatementTypeUnmarshaller extends AbstractSAMLObjectUnmarshaller {
 
     /** {@inheritDoc} */
-    protected void processChildElement(XMLObject parentObject, XMLObject childObject) throws UnmarshallingException {
+    protected void processChildElement(final XMLObject parentObject, final XMLObject childObject)
+            throws UnmarshallingException {
         XACMLPolicyStatementType xacmlpolicystatement = (XACMLPolicyStatementType) parentObject;
 
         if (childObject instanceof PolicyType) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list