Examples of TestDeployment


Examples of org.jboss.test.server.profileservice.component.persistence.support.TestDeployment

      return getMOF().initManagedObject(createDeploymentMetaData(), null);
   }
  
   protected TestDeployment createDeploymentMetaData() throws Exception
   {
      TestDeployment deployment = new TestDeployment();
      List<TestComponent> components = new ArrayList<TestComponent>();
      components.add(
            createComponentMetaData("component1",
                  new ObjectName("org.jboss:type=testComponent1"),
                  createCompositeMetaData("composite1", 'a', new Integer(1))));
      components.add(
            createComponentMetaData("component2",
                  new ObjectName("org.jboss:type=testComponent2"),
                  createCompositeMetaData("composite2", 'b', new Integer(2))));
      deployment.setComponents(components);
      return deployment;
   }
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.