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