1 27 package org.objectweb.jonas_rar.deployment.api; 28 29 import java.io.Serializable ; 30 import java.util.List ; 31 32 import org.objectweb.jonas_rar.deployment.xml.JonasActivationspec; 33 34 39 40 public class JonasActivationspecDesc implements Serializable { 41 42 45 private String id = null; 46 47 50 private List descriptionList = null; 51 52 55 private String jndiName = null; 56 57 60 private String defaultAS = null; 61 62 65 public JonasActivationspecDesc(JonasActivationspec ja) { 66 if (ja != null) { 67 id = ja.getId(); 68 descriptionList = ja.getDescriptionList(); 69 jndiName = ja.getJndiName(); 70 defaultAS = ja.getDefaultAS(); 71 } 72 } 73 74 78 public String getId() { 79 return id; 80 } 81 82 86 public List getDescriptionList() { 87 return descriptionList; 88 } 89 90 94 public String getJndiName() { 95 return jndiName; 96 } 97 98 102 public String getDefaultAS() { 103 return defaultAS; 104 } 105 106 } 107 | Popular Tags |