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