[java-identity-provider COMMIT] in /trunk/idp-attribute-filter-impl: .classpath src/main/java/net/shibboleth/idp/attr...

noreply at shibboleth.net noreply at shibboleth.net
Thu Jul 18 16:08:51 EDT 2013


Author: rdw
Date: Thu Jul 18 16:08:51 2013
New Revision: 4599

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4599&view=rev
Log:
IDP209 Incorrect getter name flushed by writing tests (which  missed the last checkin)

Modified:
    trunk/idp-attribute-filter-impl/.classpath
    trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filter/impl/policyrule/saml/AbstractEntityAttributePolicyRule.java

Modified: trunk/idp-attribute-filter-impl/.classpath
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-filter-impl/.classpath?rev=4599&r1=4598&r2=4599&view=diff
==============================================================================
--- trunk/idp-attribute-filter-impl/.classpath (original)
+++ trunk/idp-attribute-filter-impl/.classpath Thu Jul 18 16:08:51 2013
@@ -1,36 +1,36 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="src" output="target/classes" path="src/main/java">
-		<attributes>
-			<attribute name="optional" value="true"/>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
-		<attributes>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
-		<attributes>
-			<attribute name="optional" value="true"/>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
-		<attributes>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
-		<attributes>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
-		<attributes>
-			<attribute name="maven.pomderived" value="true"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Modified: trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filter/impl/policyrule/saml/AbstractEntityAttributePolicyRule.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filter/impl/policyrule/saml/AbstractEntityAttributePolicyRule.java?rev=4599&r1=4598&r2=4599&view=diff
==============================================================================
--- trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filter/impl/policyrule/saml/AbstractEntityAttributePolicyRule.java (original)
+++ trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filter/impl/policyrule/saml/AbstractEntityAttributePolicyRule.java Thu Jul 18 16:08:51 2013
@@ -56,7 +56,7 @@
     private final Logger log = LoggerFactory.getLogger(AbstractEntityAttributePolicyRule.class);
 
     /** The name of the entity attribute the entity must have. */
-    private String name;
+    private String attrName;
 
     /** The name format of the entity attribute the entity must have. */
     private String nameFormat;
@@ -66,8 +66,8 @@
      * 
      * @return name of the entity attribute the entity must have
      */
-    @NonnullAfterInit public String getName() {
-        return name;

[... 97 lines stripped ...]


More information about the commits mailing list