[jboss-cvs] JBossAS SVN: r89481 - branches/Branch_5_x/system/src/tests/org/jboss/test/server/profileservice/support.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 27 20:23:52 EDT 2009


Author: jason.greene at jboss.com
Date: 2009-05-27 20:23:52 -0400 (Wed, 27 May 2009)
New Revision: 89481

Modified:
   branches/Branch_5_x/system/src/tests/org/jboss/test/server/profileservice/support/MockServer.java
Log:
Add missing method


Modified: branches/Branch_5_x/system/src/tests/org/jboss/test/server/profileservice/support/MockServer.java
===================================================================
--- branches/Branch_5_x/system/src/tests/org/jboss/test/server/profileservice/support/MockServer.java	2009-05-27 23:02:05 UTC (rev 89480)
+++ branches/Branch_5_x/system/src/tests/org/jboss/test/server/profileservice/support/MockServer.java	2009-05-28 00:23:52 UTC (rev 89481)
@@ -18,7 +18,7 @@
  * License along with this software; if not, write to the Free
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */ 
+ */
 package org.jboss.test.server.profileservice.support;
 
 import java.util.Date;
@@ -44,14 +44,19 @@
  */
 public class MockServer implements JBossASServer
 {
+   public JBossASServerConfig config;
 
-   public JBossASServerConfig config;
-   
    public MockServer(JBossASServerConfig config)
    {
       this.config = config;
    }
 
+   public boolean isStarted()
+   {
+      // TODO Auto-generated method stub
+      return false;
+   }
+
    public String getBuildDate()
    {
       // TODO Auto-generated method stub
@@ -115,7 +120,7 @@
    public void addBootstrap(Bootstrap<JBossASServer, JBossASServerConfig> arg0) throws IllegalArgumentException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public ConfigurationInitializer<JBossASServerConfig> getConfigInitializer()
@@ -150,76 +155,76 @@
    public void initialize() throws IllegalStateException, InvalidConfigurationException, LifecycleEventException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void registerEventHandler(LifecycleState arg0, LifecycleEventHandler arg1) throws IllegalArgumentException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void registerEventHandler(LifecycleEventHandler arg0, EnumSet<LifecycleState> arg1)
          throws IllegalArgumentException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void registerEventHandler(LifecycleEventHandler arg0, LifecycleState... arg1) throws IllegalArgumentException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void registerEventHandlers(LifecycleState arg0, LifecycleEventHandler... arg1)
          throws IllegalArgumentException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void removeBootstrap(Bootstrap arg0) throws IllegalArgumentException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void setConfigInitializer(ConfigurationInitializer<JBossASServerConfig> arg0) throws IllegalStateException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void setConfiguration(JBossASServerConfig arg0)
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void setServerInitializer(ServerInitializer<JBossASServer, JBossASServerConfig> arg0)
          throws IllegalStateException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void setValidator(ConfigurationValidator<JBossASServerConfig> arg0) throws IllegalStateException
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void shutdown() throws IllegalStateException, Exception
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public void start() throws IllegalStateException, Exception
    {
       // TODO Auto-generated method stub
-      
+
    }
 
    public boolean unregisterEventHandler(LifecycleEventHandler arg0, LifecycleState arg1)




More information about the jboss-cvs-commits mailing list