1 27 28 package org.objectweb.jonas_ejb.deployment.api; 29 30 import org.objectweb.jonas_ejb.deployment.xml.ActivationConfigProperty; 31 32 37 38 public class ActivationConfigPropertyDesc { 39 40 43 private String activationConfigPropertyName = null; 44 45 48 private String activationConfigPropertyValue = null; 49 50 53 public ActivationConfigPropertyDesc() { 54 55 } 56 57 public ActivationConfigPropertyDesc(ActivationConfigProperty acp) { 58 if (acp != null) { 59 activationConfigPropertyName = acp.getActivationConfigPropertyName(); 60 activationConfigPropertyValue = acp.getActivationConfigPropertyValue(); 61 } 62 } 63 64 68 public String getActivationConfigPropertyName() { 69 return activationConfigPropertyName; 70 } 71 72 76 public void setActivationConfigPropertyName(String activationConfigPropertyName) { 77 this.activationConfigPropertyName = activationConfigPropertyName; 78 } 79 80 81 85 public String getActivationConfigPropertyValue() { 86 return activationConfigPropertyValue; 87 } 88 89 93 public void setActivationConfigPropertyValue(String activationConfigPropertyValue) { 94 this.activationConfigPropertyValue = activationConfigPropertyValue; 95 } 96 97 } 98 | Popular Tags |