You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2006/05/23 04:26:26 UTC

svn commit: r408818 - /geronimo/branches/1.1/modules/security/src/java/org/apache/geronimo/security/keystore/FileKeystoreManager.java

Author: ammulder
Date: Mon May 22 19:26:25 2006
New Revision: 408818

URL: http://svn.apache.org/viewvc?rev=408818&view=rev
Log:
Fix keystore manager to use new method to generate a GBean name
  GERONIMO-2048

Modified:
    geronimo/branches/1.1/modules/security/src/java/org/apache/geronimo/security/keystore/FileKeystoreManager.java

Modified: geronimo/branches/1.1/modules/security/src/java/org/apache/geronimo/security/keystore/FileKeystoreManager.java
URL: http://svn.apache.org/viewvc/geronimo/branches/1.1/modules/security/src/java/org/apache/geronimo/security/keystore/FileKeystoreManager.java?rev=408818&r1=408817&r2=408818&view=diff
==============================================================================
--- geronimo/branches/1.1/modules/security/src/java/org/apache/geronimo/security/keystore/FileKeystoreManager.java (original)
+++ geronimo/branches/1.1/modules/security/src/java/org/apache/geronimo/security/keystore/FileKeystoreManager.java Mon May 22 19:26:25 2006
@@ -144,7 +144,7 @@
         }
         AbstractName aName;
         AbstractName myName = kernel.getAbstractNameFor(this);
-        aName = kernel.getNaming().createChildName(myName, name, NameFactory.KEYSTORE_INSTANCE);
+        aName = kernel.getNaming().createSiblingName(myName, name, NameFactory.KEYSTORE_INSTANCE);
         GBeanData data = new GBeanData(aName, FileKeystoreInstance.getGBeanInfo());
         try {
             String path = configuredDir.toString();