FileDocCategorySizeDatePackage
JESTarget.javaAPI DocGlassfish v2 API2710Fri May 04 22:34:36 BST 2007com.sun.enterprise.deployment.client

JESTarget

public class JESTarget extends Object implements javax.enterprise.deploy.spi.Target
This class reprensents a deployment target
author
Jerome Dochez

Fields Summary
private String
name
private String
description
Constructors Summary
public JESTarget(String name, String description)
Creates a new instance of JESTarget

param
name is the cluster or standalone instance identifier
param
optional description for deployment feedback on the target

        this.name = name;
        this.description = description;
    
Methods Summary
public java.lang.StringgetDescription()

        return description;
    
public java.lang.StringgetName()

        return name;