You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by va...@apache.org on 2011/02/10 08:59:14 UTC

svn commit: r1069261 - /geronimo/server/branches/2.2/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/sharedlib/SharedLib.java

Author: vamsic007
Date: Thu Feb 10 07:59:14 2011
New Revision: 1069261

URL: http://svn.apache.org/viewvc?rev=1069261&view=rev
Log:
GERONIMO-5806 SharedLib GBean should have priority set to PRIORITY_CLASSLOADER

Modified:
    geronimo/server/branches/2.2/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/sharedlib/SharedLib.java

Modified: geronimo/server/branches/2.2/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/sharedlib/SharedLib.java
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.2/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/sharedlib/SharedLib.java?rev=1069261&r1=1069260&r2=1069261&view=diff
==============================================================================
--- geronimo/server/branches/2.2/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/sharedlib/SharedLib.java (original)
+++ geronimo/server/branches/2.2/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/sharedlib/SharedLib.java Thu Feb 10 07:59:14 2011
@@ -105,6 +105,8 @@ public class SharedLib {
 
     static {
         GBeanInfoBuilder infoFactory = GBeanInfoBuilder.createStatic(SharedLib.class);
+        infoFactory.setPriority(GBeanInfo.PRIORITY_CLASSLOADER);
+
         infoFactory.addAttribute("classLoader", ClassLoader.class, false, false);
         infoFactory.addAttribute("classesDirs", String[].class, true, true);
         infoFactory.addAttribute("libDirs", String[].class, true, true);