1 25 package org.ofbiz.service.job; 26 27 import java.io.Serializable ; 28 29 36 public interface Job extends Serializable { 37 38 41 public void exec() throws InvalidJobException; 42 43 46 public String getJobId(); 47 48 51 public String getJobName(); 52 53 56 public long getRuntime(); 57 58 61 public boolean isValid(); 62 63 66 public void queue() throws InvalidJobException; 67 } 68 69 | Popular Tags |