1 28 29 package com.caucho.jca.cfg; 30 31 import com.caucho.log.Log; 32 import com.caucho.util.L10N; 33 34 import java.util.logging.Logger ; 35 36 39 public class ConfigPropertyConfig { 40 private static final L10N L = new L10N(ConfigPropertyConfig.class); 41 private static final Logger log = Log.open(ConfigPropertyConfig.class); 42 43 private String _name; 44 private Class _type; 45 private Object _value; 46 47 public ConfigPropertyConfig() 48 { 49 } 50 51 54 public void setDescription(String description) 55 { 56 } 57 58 61 public void setConfigPropertyName(String name) 62 { 63 _name = name; 64 } 65 66 69 public String getName() 70 { 71 return _name; 72 } 73 74 77 public void setConfigPropertyType(Class type) 78 { 79 _type = type; 80 } 81 82 85 public Class getType() 86 { 87 return _type; 88 } 89 90 93 public void setConfigPropertyValue(Object value) 94 { 95 _value = value; 96 } 97 98 101 public Object getValue() 102 { 103 return _value; 104 } 105 } 106 | Popular Tags |