1 package hero.util.values; 2 3 31 32 33 import java.io.Serializable ; 34 import java.util.Vector ; 35 36 public final class BonitaMapperValue implements Serializable { 37 38 40 private String roleName=""; 41 private String name=""; 42 private int type; 43 44 46 public String getRoleName() { 47 return (roleName); 48 } 49 50 public void setRoleName(String roleName) { 51 this.roleName = roleName; 52 } 53 54 public String getName() { 55 return (name); 56 } 57 58 public void setName(String name) { 59 this.name = name; 60 } 61 62 public int getType() { 63 return (type); 64 } 65 66 public void setType(int type) { 67 this.type = type; 68 } 69 70 public BonitaMapperValue(){} 71 72 } 73 | Popular Tags |