1
2
3
4
5
6
7
8
9
10 package org.mule.transport.quartz.jobs;
11
12 import org.mule.transport.quartz.config.AbstractJobConfig;
13
14
15
16
17 public class EndpointPollingJobConfig extends AbstractJobConfig
18 {
19 private String endpointRef;
20
21
22 private int timeout = 5000;
23
24 public String getEndpointRef()
25 {
26 return endpointRef;
27 }
28
29 public void setEndpointRef(String endpointRef)
30 {
31 this.endpointRef = endpointRef;
32 }
33
34 public int getTimeout()
35 {
36 return timeout;
37 }
38
39 public void setTimeout(int timeout)
40 {
41 this.timeout = timeout;
42 }
43
44 public Class getJobClass()
45 {
46 return EndpointPollingJob.class;
47 }
48 }