1 28 29 package com.caucho.jca.cfg; 30 31 34 public class ConfigProperty { 35 private String _name; 36 private String _type; 37 private String _value; 38 39 public void setDescription(String description) 40 { 41 42 } 43 44 public void setConfigPropertyName(String name) 45 { 46 _name = name; 47 } 48 49 public void setConfigPropertyType(String type) 50 { 51 _type = type; 52 } 53 54 public void setConfigPropertyValue(String value) 55 { 56 _value = value; 57 } 58 } 59 | Popular Tags |