FileDocCategorySizeDatePackage
DeploymentSupport.javaAPI DocGlassfish v2 API3334Fri May 04 22:30:48 BST 2007com.sun.appserv.management.deploy

DeploymentSupport

public final class DeploymentSupport extends Object
Routines to convert to/from Map and Deployment types. {link com.sun.appserv.management.deploy.DeploymentMgr}

Fields Summary
Constructors Summary
Methods Summary
public static com.sun.appserv.management.deploy.DeploymentProgressmapToDeploymentProgress(java.util.Map m)
Create a DeploymentProgress represented by a Map.

param
m a Map representing a DeploymentProgress.
return
an implementation of DeploymentProgress

		return( new DeploymentProgressImpl( m ) );
	
public static com.sun.appserv.management.deploy.DeploymentSourcemapToDeploymentSource(java.util.Map m)
Create a DeploymentSource represented by a Map.

param
m a Map representing a DeploymentSource.
return
an implementation of DeploymentSource

		return( new DeploymentSourceImpl( m ) );
	
public static com.sun.appserv.management.deploy.DeploymentStatusmapToDeploymentStatus(java.util.Map m)
Create a DeploymentProgress represented by a Map.

param
m a Map representing a DeploymentStatus.
return
a DeploymentStatus

		return( new DeploymentStatusImpl( m ) );