FileDocCategorySizeDatePackage
DeploymentMode.javaAPI DocGlassfish v2 API2972Fri May 04 22:34:30 BST 2007com.sun.enterprise.deployment.backend

DeploymentMode

public class DeploymentMode extends Object
Represents the archive file layout in the repository for a deployment operation. For S1AS 7.0, the only mode supported is EXPLODED.
author
Nazrul Islam
since
JDK 1.4

Fields Summary
public static final DeploymentMode
EXPLODED
deploy mode where the archive and all the modules are exploded
public static final DeploymentMode
COMPONENT
deploy mode where the top level archive is only exploded
private final String
mode
mode of this deployment
Constructors Summary
private DeploymentMode(String mode)
Private constructor.

param
mode mode of this deployment

        assert mode != null;
        this.mode = mode;
    
Methods Summary
public java.lang.StringtoString()
Retruns a string representation of this deploy mode.

        return this.mode;