[extensions COMMIT] in /java-idp-security-config/trunk: .classpath pom.xml src/main/java/edu/internet2/middleware/shi...

noreply at shibboleth.net noreply at shibboleth.net
Tue Jul 9 22:29:16 EDT 2013


Author: scantor
Date: Tue Jul  9 22:29:16 2013
New Revision: 355

URL: http://svn.shibboleth.net/view/extensions?rev=355&view=rev
Log:
Add Javadocs for bean accessors, add xmltooling as provided dep.

Modified:
    java-idp-security-config/trunk/.classpath
    java-idp-security-config/trunk/pom.xml
    java-idp-security-config/trunk/src/main/java/edu/internet2/middleware/shibboleth/idp/ext/securityconfig/OpensamlCustomSecurityConfigBean.java

Modified: java-idp-security-config/trunk/.classpath
URL: http://svn.shibboleth.net/view/extensions/java-idp-security-config/trunk/.classpath?rev=355&r1=354&r2=355&view=diff
==============================================================================
--- java-idp-security-config/trunk/.classpath (original)
+++ java-idp-security-config/trunk/.classpath Tue Jul  9 22:29:16 2013
@@ -1,16 +1,36 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <classpath>
-
-    <classpathentry kind="src" output="target/classes" path="src/main/java"/>
-    <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
-    
-    <classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
-    <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
-    
-    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-    <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
-    
-    <classpathentry kind="output" path="target/classes"/>
-    
+	<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.6">
+		<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: java-idp-security-config/trunk/pom.xml
URL: http://svn.shibboleth.net/view/extensions/java-idp-security-config/trunk/pom.xml?rev=355&r1=354&r2=355&view=diff
==============================================================================
--- java-idp-security-config/trunk/pom.xml (original)
+++ java-idp-security-config/trunk/pom.xml Tue Jul  9 22:29:16 2013
@@ -53,6 +53,13 @@
             <version>2.4.0</version>
             <scope>provided</scope>
         </dependency>
+
+        <dependency>
+            <groupId>org.opensaml</groupId>
+            <artifactId>xmltooling</artifactId>
+            <version>1.4.0</version>
+            <scope>provided</scope>
+        </dependency>
         
         <!-- Runtime dependencies -->
 

Modified: java-idp-security-config/trunk/src/main/java/edu/internet2/middleware/shibboleth/idp/ext/securityconfig/OpensamlCustomSecurityConfigBean.java
URL: http://svn.shibboleth.net/view/extensions/java-idp-security-config/trunk/src/main/java/edu/internet2/middleware/shibboleth/idp/ext/securityconfig/OpensamlCustomSecurityConfigBean.java?rev=355&r1=354&r2=355&view=diff
==============================================================================
--- java-idp-security-config/trunk/src/main/java/edu/internet2/middleware/shibboleth/idp/ext/securityconfig/OpensamlCustomSecurityConfigBean.java (original)
+++ java-idp-security-config/trunk/src/main/java/edu/internet2/middleware/shibboleth/idp/ext/securityconfig/OpensamlCustomSecurityConfigBean.java Tue Jul  9 22:29:16 2013
@@ -93,106 +93,236 @@
 
     }
 
+    /**
+     * Get the XML Signature signing algorithm to use with an RSA private key.
+     * 
+     * @return  RSA private key signing algorithm
+     */
     public String getSignatureAlgorithmRSA() {
         return signatureAlgorithmRSA;
     }
 
+    /**
+     * Set the XML Signature signing algorithm to use with an RSA private key.
+     * 
+     * @param signatureAlgorithmRSA  RSA private key signing algorithm
+     */
     public void setSignatureAlgorithmRSA(String signatureAlgorithmRSA) {
         this.signatureAlgorithmRSA = signatureAlgorithmRSA;
     }
 
+    /**

[... 215 lines stripped ...]


More information about the commits mailing list