1 27 package org.objectweb.jonas_rar.deployment.api; 28 29 import java.io.Serializable ; 30 31 import org.objectweb.jonas_rar.deployment.xml.TmConfigProperty; 32 33 38 39 public class TmConfigPropertyDesc implements Serializable { 40 41 44 private String tmConfigPropertyName = null; 45 46 49 private String tmConfigPropertyValue = null; 50 51 52 55 public TmConfigPropertyDesc(TmConfigProperty tcp) { 56 if (tcp != null) { 57 tmConfigPropertyName = tcp.getTmConfigPropertyName(); 58 tmConfigPropertyValue = tcp.getTmConfigPropertyValue(); 59 } 60 } 61 62 66 public String getTmConfigPropertyName() { 67 return tmConfigPropertyName; 68 } 69 70 74 public String getTmConfigPropertyValue() { 75 return tmConfigPropertyValue; 76 } 77 78 } 79 | Popular Tags |