1 23 24 package com.sun.enterprise.deployment.client; 25 26 import javax.enterprise.deploy.spi.Target ; 27 28 33 public class JESTarget implements Target { 34 35 private String name; 36 private String description; 37 38 44 public JESTarget(String name, String description) { 45 this.name = name; 46 this.description = description; 47 } 48 49 public String getDescription() { 50 return description; 51 } 52 53 public String getName() { 54 return name; 55 } 56 } 57 | Popular Tags |