1 package hero.util.values; 2 3 31 32 33 34 import java.io.Serializable ; 35 import java.util.Vector ; 36 37 public final class BonitaRoleValue implements Serializable { 38 39 41 private String name=""; 42 private String description=""; 43 private BonitaMapperValue mapper=null; 44 45 47 public String getName() { 48 return (name); 49 } 50 51 public void setName(String name) { 52 this.name = name; 53 } 54 55 public String getDescription() { 56 return (description); 57 } 58 59 public void setDescription(String description) { 60 this.description = description; 61 } 62 63 public BonitaMapperValue getMapper() { 64 return (mapper); 65 } 66 67 public void setMapper(BonitaMapperValue mapper) { 68 this.mapper = mapper; 69 } 70 71 public BonitaRoleValue(){} 72 73 } 74 | Popular Tags |