RequiredConfigPropertyDesc.java

00001 
00027 package org.objectweb.jonas_rar.deployment.api;
00028 
00029 import java.io.Serializable;
00030 import java.util.List;
00031 
00032 import org.objectweb.jonas_rar.deployment.xml.RequiredConfigProperty;
00033 
00040 public class RequiredConfigPropertyDesc implements Serializable {
00041 
00045     private List descriptionList = null;
00046 
00050     private String configPropertyName = null;
00051 
00055     public RequiredConfigPropertyDesc(RequiredConfigProperty rcp) {
00056         if (rcp != null) {
00057             descriptionList = rcp.getDescriptionList();
00058             configPropertyName = rcp.getConfigPropertyName();
00059         }
00060     }
00061 
00066     public List getDescriptionList() {
00067         return descriptionList;
00068     }
00069 
00074     public String getConfigPropertyName() {
00075         return configPropertyName;
00076     }
00077 
00078 }

Generated on Tue Feb 15 15:05:57 2005 for JOnAS by  doxygen 1.3.9.1