1 23 24 package com.sun.enterprise.config.serverbeans.validation; 25 26 27 import com.sun.enterprise.config.ConfigContextEvent; 28 import com.sun.enterprise.config.ConfigContext; 29 import com.sun.enterprise.config.ConfigBean; 30 31 import com.sun.enterprise.util.LocalStringManagerImpl; 33 34 35 public class GenericDesc { 36 Result result; 37 Object value; 38 String beanName; 39 ConfigContext context; 40 String name; 41 String choice; 42 LocalStringManagerImpl smh; 43 String attrName; 44 String primaryKeyName; 45 46 public GenericDesc(Result result, Object value, String beanName, ConfigContext context, String name, String choice, String primaryKeyName,LocalStringManagerImpl smh) { 47 this.result = result; 48 this.value = value; 49 this.beanName = beanName; 50 this.context = context; 51 this.name = name; 52 this.choice = choice; 53 this.smh = smh; 54 this.primaryKeyName = primaryKeyName; 55 attrName = null; 56 } 57 58 public void setAttrName(String name) { 59 attrName = name; 60 } 61 62 public String getPrimaryKeyName() { 63 return primaryKeyName; 64 } 65 } | Popular Tags |