1 25 26 package org.objectweb.jonas.webapp.jonasadmin.resource; 27 28 import org.objectweb.jonas.webapp.jonasadmin.common.NameItem; 29 30 31 34 public class MailFactoryItem implements NameItem { 35 37 private String name = null; 38 private boolean deployed = false; 39 private String type = null; 40 42 public MailFactoryItem() { 43 } 44 45 public MailFactoryItem(String p_Name, boolean p_deployed, String p_type) { 46 setName(p_Name); 47 setDeployed(p_deployed); 48 setType(p_type); 49 } 50 52 public String getName() { 53 return name; 54 } 55 56 public void setName(String name) { 57 this.name = name; 58 } 59 60 public boolean getDeployed() { 61 return deployed; 62 } 63 64 public void setDeployed(boolean deployed) { 65 this.deployed = deployed; 66 } 67 68 public String getType() { 69 return type; 70 } 71 72 public void setType(String type) { 73 this.type = type; 74 } 75 } 76 | Popular Tags |