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.JonasAdminobject; 33 34 39 40 public class JonasAdminobjectDesc 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 List jonasConfigPropertyList = null; 61 62 63 66 public JonasAdminobjectDesc(JonasAdminobject ja) { 67 if (ja != null) { 68 id = ja.getId(); 69 descriptionList = ja.getDescriptionList(); 70 jndiName = ja.getJndiName(); 71 jonasConfigPropertyList = Utility.jonasConfigProperty(ja.getJonasConfigPropertyList()); 72 } 73 } 74 75 79 public String getId() { 80 return id; 81 } 82 83 87 public List getDescriptionList() { 88 return descriptionList; 89 } 90 91 95 public String getJndiName() { 96 return jndiName; 97 } 98 99 103 public List getJonasConfigPropertyList() { 104 return jonasConfigPropertyList; 105 } 106 107 } 108 | Popular Tags |