View Javadoc

1   /*
2    * $Id: AbstractJobConfig.java 11613 2008-04-20 20:30:10Z rossmason $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  package org.mule.transport.quartz.config;
11  
12  import org.mule.transport.quartz.QuartzConnector;
13  
14  /**
15   * Base implementation of {@link org.mule.transport.quartz.config.JobConfig}.
16   */
17  public abstract class AbstractJobConfig implements JobConfig
18  {
19      private String groupName = QuartzConnector.DEFAULT_GROUP_NAME;
20  
21      private String jobGroupName = QuartzConnector.DEFAULT_GROUP_NAME;
22  
23      public String getGroupName()
24      {
25          return groupName;
26      }
27  
28      public void setGroupName(String groupName)
29      {
30          this.groupName = groupName;
31      }
32  
33      public String getJobGroupName()
34      {
35          return jobGroupName;
36      }
37  
38      public void setJobGroupName(String jobGroupName)
39      {
40          this.jobGroupName = jobGroupName;
41      }
42  }