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.Adminobject; 33 34 39 40 public class AdminobjectDesc implements Serializable { 41 42 45 private String id = null; 46 47 50 private String adminobjectInterface = null; 51 52 55 private String adminobjectClass = null; 56 57 60 private List configPropertyList = null; 61 62 63 66 public AdminobjectDesc(Adminobject ao) { 67 if (ao != null) { 68 id = ao.getId(); 69 adminobjectInterface = ao.getAdminobjectInterface(); 70 adminobjectClass = ao.getAdminobjectClass(); 71 configPropertyList = Utility.configProperty(ao.getConfigPropertyList()); 72 } 73 } 74 75 79 public String getId() { 80 return id; 81 } 82 83 87 public String getAdminobjectInterface() { 88 return adminobjectInterface; 89 } 90 91 95 public String getAdminobjectClass() { 96 return adminobjectClass; 97 } 98 99 103 public List getConfigPropertyList() { 104 return configPropertyList; 105 } 106 } 107 | Popular Tags |