1 17 18 package org.apache.lenya.ac; 19 20 26 public class UserType { 27 private String key; 28 private String className; 29 private String createUseCase; 30 31 34 public UserType() { 35 } 36 37 44 public UserType(String key, String className, String createUseCase) { 45 this.key = key; 46 this.className = className; 47 this.createUseCase = createUseCase; 48 } 49 50 56 public String getKey() { 57 return key; 58 } 59 60 66 public void setKey(String key) { 67 this.key = key; 68 } 69 70 80 public String getClassName() { 81 return className; 82 } 83 84 92 public void setClassName(String className) { 93 this.className = className; 94 } 95 96 104 public String getCreateUseCase() { 105 return createUseCase; 106 } 107 108 116 public void setCreateUseCase(String createUseCase) { 117 this.createUseCase = createUseCase; 118 } 119 120 } 121 | Popular Tags |