1 4 package org.oddjob.scheduling; 5 6 import org.oddjob.Stateful; 7 8 28 public class TriggerScheduleInstruction extends ScheduleInstruction { 29 private static final long serialVersionUID = 20051121; 30 31 32 37 private Stateful on; 38 39 45 private String state; 46 47 public Stateful getOn() { 48 return on; 49 } 50 51 public void setOn(Stateful triggerOn) { 52 this.on = triggerOn; 53 } 54 55 public String getState() { 56 return state; 57 } 58 59 public void setState(String state) { 60 this.state = state; 61 } 62 } 63 | Popular Tags |