You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2008/03/18 08:06:52 UTC

svn commit: r638244 - in /geronimo/specs/trunk/geronimo-jaspi_1.0_spec: LICENSE.txt NOTICE.txt pom.xml src/main/java/javax/security/auth/message/config/AuthConfigFactory.java

Author: djencks
Date: Tue Mar 18 00:06:51 2008
New Revision: 638244

URL: http://svn.apache.org/viewvc?rev=638244&view=rev
Log:
fix default class name, upgrade to specs-parent 1.5

Removed:
    geronimo/specs/trunk/geronimo-jaspi_1.0_spec/LICENSE.txt
    geronimo/specs/trunk/geronimo-jaspi_1.0_spec/NOTICE.txt
Modified:
    geronimo/specs/trunk/geronimo-jaspi_1.0_spec/pom.xml
    geronimo/specs/trunk/geronimo-jaspi_1.0_spec/src/main/java/javax/security/auth/message/config/AuthConfigFactory.java

Modified: geronimo/specs/trunk/geronimo-jaspi_1.0_spec/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaspi_1.0_spec/pom.xml?rev=638244&r1=638243&r2=638244&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaspi_1.0_spec/pom.xml (original)
+++ geronimo/specs/trunk/geronimo-jaspi_1.0_spec/pom.xml Tue Mar 18 00:06:51 2008
@@ -26,20 +26,19 @@
 
     <parent>
         <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>specs</artifactId>
-        <version>1.4</version>
-        <relativePath>../pom.xml</relativePath>
+        <artifactId>specs-parent</artifactId>
+        <version>1.5</version>
     </parent>
 
     <artifactId>geronimo-jaspi_1.0_spec</artifactId>
     <packaging>jar</packaging>
     <name>Java Authentication SPI for Containers</name>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0-SNAPSHOT</version>
 
     <properties>
-	    <geronimo.osgi.export.pkg>javax.security.auth.message*</geronimo.osgi.export.pkg>
+        <geronimo.osgi.export.pkg>javax.security.auth.message*</geronimo.osgi.export.pkg>
         <geronimo.osgi.export.version>1.0</geronimo.osgi.export.version>
-	</properties>
+    </properties>
 
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-jaspi_1.0_spec/</connection>

Modified: geronimo/specs/trunk/geronimo-jaspi_1.0_spec/src/main/java/javax/security/auth/message/config/AuthConfigFactory.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaspi_1.0_spec/src/main/java/javax/security/auth/message/config/AuthConfigFactory.java?rev=638244&r1=638243&r2=638244&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaspi_1.0_spec/src/main/java/javax/security/auth/message/config/AuthConfigFactory.java (original)
+++ geronimo/specs/trunk/geronimo-jaspi_1.0_spec/src/main/java/javax/security/auth/message/config/AuthConfigFactory.java Tue Mar 18 00:06:51 2008
@@ -28,6 +28,7 @@
 public abstract class AuthConfigFactory {
 
     public static final String DEFAULT_FACTORY_SECURITY_PROPERTY = "authconfigprovider.factory";
+    private static final String DEFAULT_JASPI_AUTHCONFIGFACTORYIMPL = "org.apache.geronimo.security.jaspi.AuthConfigFactoryImpl";
 
     private static AuthConfigFactory factory;
     private static ClassLoader contextClassLoader;
@@ -54,7 +55,7 @@
                                 }
                             });
             if (className == null) {
-                className = "org.apache.geronimo.jaspi.AuthConfigFactoryImpl";
+                className = DEFAULT_JASPI_AUTHCONFIGFACTORYIMPL;
             }
             try {
                 final String finalClassName = className;