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.TmParams; 33 34 39 40 public class TmParamsDesc implements Serializable { 41 42 45 private List tmConfigPropertyList = null; 46 47 48 51 public TmParamsDesc(TmParams tp) { 52 if (tp != null) { 53 tmConfigPropertyList = Utility.tmConfigProperty(tp.getTmConfigPropertyList()); 54 } 55 } 56 57 61 public List getTmConfigPropertyList() { 62 return tmConfigPropertyList; 63 } 64 65 } 66 | Popular Tags |