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.RequiredConfigProperty; 33 34 39 40 public class RequiredConfigPropertyDesc implements Serializable { 41 42 45 private List descriptionList = null; 46 47 50 private String configPropertyName = null; 51 52 55 public RequiredConfigPropertyDesc(RequiredConfigProperty rcp) { 56 if (rcp != null) { 57 descriptionList = rcp.getDescriptionList(); 58 configPropertyName = rcp.getConfigPropertyName(); 59 } 60 } 61 62 66 public List getDescriptionList() { 67 return descriptionList; 68 } 69 70 74 public String getConfigPropertyName() { 75 return configPropertyName; 76 } 77 78 } 79 | Popular Tags |