Package com.sun.appserv.management.deploy

Examples of com.sun.appserv.management.deploy.DeploymentStatusImpl.asMap()


  {
    final DeploymentStatusImpl  ds  = createDeploymentStatus( "dummy" );
    final DeploymentStatusFoo  stage1  = new DeploymentStatusFoo();
    ds.addSubStage( stage1 );
   
    final Map<String,Serializable>  data  = ds.asMap();
   
    final DeploymentStatusImpl ds2  = new DeploymentStatusImpl( data );
   
    assert( ds2.equals( ds ) );
  }
View Full Code Here


    public void
  testDeploymentStatusAsMap()
  {
    final DeploymentStatusImpl  ds  = createDeploymentStatus( "dummy" );
   
    final Map<String,Serializable>  m  = ds.asMap();
  }
 
 
    public void
  testCreateDeploymentStatusFromDeploymentStatus()
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.