[jboss-cvs] JBossAS SVN: r86412 - in branches/Branch_5_x: profileservice/src/main/org/jboss/profileservice/ejb and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Mar 27 05:31:18 EDT 2009


Author: emuckenhuber
Date: 2009-03-27 05:31:18 -0400 (Fri, 27 Mar 2009)
New Revision: 86412

Modified:
   branches/Branch_5_x/component-matrix/pom.xml
   branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/ejb/SecureManagementView.java
   branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java
Log:
[JBAS-6644] update jboss-integration, expose mgtView reload

Modified: branches/Branch_5_x/component-matrix/pom.xml
===================================================================
--- branches/Branch_5_x/component-matrix/pom.xml	2009-03-27 09:06:26 UTC (rev 86411)
+++ branches/Branch_5_x/component-matrix/pom.xml	2009-03-27 09:31:18 UTC (rev 86412)
@@ -68,7 +68,7 @@
     <version.org.jboss.ejb3.proxy.clustered.client>1.0.1</version.org.jboss.ejb3.proxy.clustered.client>
     <version.org.jboss.ejb3.security.client>1.0.0</version.org.jboss.ejb3.security.client>
     <version.org.jboss.ejb3>1.1.3</version.org.jboss.ejb3>
-    <version.org.jboss.integration>5.1.0.CR1</version.org.jboss.integration>
+    <version.org.jboss.integration>5.1.0.CR2</version.org.jboss.integration>
     <version.org.jboss.jbossxb>2.0.0.GA</version.org.jboss.jbossxb>
     <version.org.jboss.jpa>1.0.0-CR1</version.org.jboss.jpa>
     <version.org.jboss.logbridge>1.0.0.CR3</version.org.jboss.logbridge>

Modified: branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/ejb/SecureManagementView.java
===================================================================
--- branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/ejb/SecureManagementView.java	2009-03-27 09:06:26 UTC (rev 86411)
+++ branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/ejb/SecureManagementView.java	2009-03-27 09:31:18 UTC (rev 86412)
@@ -142,9 +142,9 @@
       return delegate.getTemplateNames();
    }
 
-   public void load()
+   public boolean load()
    {
-      delegate.load();
+      return delegate.load();
    }
 
    public void process() throws Exception

Modified: branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java
===================================================================
--- branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java	2009-03-27 09:06:26 UTC (rev 86411)
+++ branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java	2009-03-27 09:31:18 UTC (rev 86412)
@@ -176,13 +176,13 @@
       stateMappings.put("Installed", RunState.RUNNING.name());
    }
    
-   public void load()
+   public boolean load()
    {
       // If the profile is not modified do nothing
       if(isReload() == false)
       {
          log.debug("Not reloading profiles.");
-         return;
+         return false;
       }
       this.forceReload = false;
       
@@ -281,6 +281,7 @@
          Thread.currentThread().interrupt();
          log.debug("Restored interrupted state of calling thread");
       }
+      return true;
    }
    
    public void reload()




More information about the jboss-cvs-commits mailing list