You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xi...@apache.org on 2012/05/03 09:56:04 UTC

svn commit: r1333343 - in /geronimo/components/jaspi/trunk/geronimo-jaspi: pom.xml src/main/java/org/apache/geronimo/components/jaspi/AuthConfigFactoryImpl.java

Author: xiaming
Date: Thu May  3 07:56:03 2012
New Revision: 1333343

URL: http://svn.apache.org/viewvc?rev=1333343&view=rev
Log:
GERONIMO-6343 Update pom to include the private impl package and fix a code error

Modified:
    geronimo/components/jaspi/trunk/geronimo-jaspi/pom.xml
    geronimo/components/jaspi/trunk/geronimo-jaspi/src/main/java/org/apache/geronimo/components/jaspi/AuthConfigFactoryImpl.java

Modified: geronimo/components/jaspi/trunk/geronimo-jaspi/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/components/jaspi/trunk/geronimo-jaspi/pom.xml?rev=1333343&r1=1333342&r2=1333343&view=diff
==============================================================================
--- geronimo/components/jaspi/trunk/geronimo-jaspi/pom.xml (original)
+++ geronimo/components/jaspi/trunk/geronimo-jaspi/pom.xml Thu May  3 07:56:03 2012
@@ -16,7 +16,7 @@
     limitations under the License.
 -->
 
-<!-- $Rev: 1032962 $ $Date: 2010-11-09 04:23:49 -0800 (Tue, 09 Nov 2010) $ -->
+<!-- $Rev$ $Date$ -->
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
@@ -176,7 +176,7 @@
                         <Specification-Version>1.0</Specification-Version>
                         <Specification-Title>JASPIC</Specification-Title>
                         <Specification-Vendor>Sun Microsystems</Specification-Vendor>
-                        <Private-Package>org.apache.geronimo.osgi.locator</Private-Package>
+                        <Private-Package>org.apache.geronimo.osgi.locator,org.apache.geronimo.components.jaspi.impl</Private-Package>
                         <Bundle-Activator>org.apache.geronimo.osgi.locator.Activator</Bundle-Activator>
                     </instructions>
                 </configuration>

Modified: geronimo/components/jaspi/trunk/geronimo-jaspi/src/main/java/org/apache/geronimo/components/jaspi/AuthConfigFactoryImpl.java
URL: http://svn.apache.org/viewvc/geronimo/components/jaspi/trunk/geronimo-jaspi/src/main/java/org/apache/geronimo/components/jaspi/AuthConfigFactoryImpl.java?rev=1333343&r1=1333342&r2=1333343&view=diff
==============================================================================
--- geronimo/components/jaspi/trunk/geronimo-jaspi/src/main/java/org/apache/geronimo/components/jaspi/AuthConfigFactoryImpl.java (original)
+++ geronimo/components/jaspi/trunk/geronimo-jaspi/src/main/java/org/apache/geronimo/components/jaspi/AuthConfigFactoryImpl.java Thu May  3 07:56:03 2012
@@ -54,7 +54,7 @@ public class AuthConfigFactoryImpl exten
 
     private static ClassLoader contextClassLoader;
 
-    private Map<String, ConfigProviderInfo> configProviders = Collections.emptyMap();
+    private Map<String, ConfigProviderInfo> configProviders = new HashMap<String, ConfigProviderInfo>();
 
     private final CallbackHandler callbackHandler;
     private final File configFile;