01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/jobscheduler/tags/sakai_2-4-1/scheduler-api/src/java/org/sakaiproject/api/app/scheduler/JobBeanWrapper.java $
03: * $Id: JobBeanWrapper.java 4396 2005-12-02 00:58:02Z john.ellis@rsmart.com $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2003, 2004 The Regents of the University of Michigan, Trustees of Indiana University,
07: * Board of Trustees of the Leland Stanford, Jr., University, and The MIT Corporation
08: *
09: * Licensed under the Educational Community License Version 1.0 (the "License");
10: * By obtaining, using and/or copying this Original Work, you agree that you have read,
11: * understand, and will comply with the terms and conditions of the Educational Community License.
12: * You may obtain a copy of the License at:
13: *
14: * http://cvs.sakaiproject.org/licenses/license_1_0.html
15: *
16: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
17: * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
18: * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
19: * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21: *
22: **********************************************************************************/package org.sakaiproject.api.app.scheduler;
23:
24: /**
25: * Created by IntelliJ IDEA.
26: * User: John Ellis
27: * Date: Dec 1, 2005
28: * Time: 12:35:51 PM
29: * To change this template use File | Settings | File Templates.
30: */
31: public interface JobBeanWrapper {
32:
33: public static final String SPRING_BEAN_NAME = "org.sakaiproject.api.app.scheduler.JobBeanWrapper.bean";
34: public static final String JOB_TYPE = "org.sakaiproject.api.app.scheduler.JobBeanWrapper.jobType";
35:
36: public String getBeanId();
37:
38: public Class getJobClass();
39:
40: public String getJobType();
41:
42: }
|