Package org.jboss.deployers.client.spi.main

Examples of org.jboss.deployers.client.spi.main.MainDeployer.shutdown()


   protected void internalRun() throws Throwable
   {
      Thread.sleep(new Random().nextInt(50));
      MainDeployer mainDeployer = (MainDeployer)main;
      mainDeployer.shutdown();
   }
}
View Full Code Here


      main.deploy(context);
      List<String> expected = new ArrayList<String>();
      expected.add(context.getName());
      assertEquals(expected, deployer.getDeployedUnits());

      main.shutdown();
      assertEquals(expected, deployer.getUndeployedUnits());
   }

   public void testSingleAndMultipleMix() throws Throwable
   {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.