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.ConfigProperty; 33 34 39 40 public class ConfigPropertyDesc implements Serializable { 41 42 45 private List descriptionList = null; 46 47 50 private String configPropertyName = null; 51 52 55 private String configPropertyType = null; 56 57 60 private String configPropertyValue = null; 61 62 63 66 public ConfigPropertyDesc() { 67 } 68 69 public ConfigPropertyDesc(ConfigProperty cp) { 70 if (cp != null) { 71 descriptionList = cp.getDescriptionList(); 72 configPropertyName = cp.getConfigPropertyName(); 73 configPropertyType = cp.getConfigPropertyType(); 74 configPropertyValue = cp.getConfigPropertyValue(); 75 } 76 } 77 78 public ConfigPropertyDesc(ConfigPropertyDesc cpd) { 79 descriptionList = cpd.getDescriptionList(); 80 configPropertyName = cpd.getConfigPropertyName(); 81 configPropertyType = cpd.getConfigPropertyType(); 82 configPropertyValue = cpd.getConfigPropertyValue(); 83 } 84 85 89 public List getDescriptionList() { 90 return descriptionList; 91 } 92 93 97 public String getConfigPropertyName() { 98 return configPropertyName; 99 } 100 101 105 public void setConfigPropertyName(String configPropertyName) { 106 this.configPropertyName = configPropertyName; 107 } 108 109 113 public String getConfigPropertyType() { 114 return configPropertyType; 115 } 116 117 121 public void setConfigPropertyType(String configPropertyType) { 122 this.configPropertyType = configPropertyType; 123 } 124 125 129 public String getConfigPropertyValue() { 130 return configPropertyValue; 131 } 132 133 137 public void setConfigPropertyValue(String configPropertyValue) { 138 this.configPropertyValue = configPropertyValue; 139 } 140 } 141 | Popular Tags |