public CreateObjectMonitor(String n, ObjectURL wturl, WithHash w, Boolean r) {
   super();
   name = n;
   with = w;
   this.wturl = wturl;
   replace = r.booleanValue();
 }
Beispiel #2
0
 public CreateSchedule(ObjectURL o, WithHash i, Boolean r) {
   super();
   obj = o;
   with = (i == null ? new WithHash() : i);
   replace = r.booleanValue();
 }
Beispiel #3
0
 public AlterInterval(ObjectURL o, WithHash w, Boolean ne) {
   super();
   obj = o;
   with = w;
   noerr = ne.booleanValue();
 }