1 /* 2 * $Id: JobConfig.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 java.io.Serializable; 13 14 /** 15 * The generic interface for Job Configuration endpoints that are described on Quartz endpoints 16 */ 17 public interface JobConfig extends Serializable 18 { 19 public Class getJobClass(); 20 21 public String getGroupName(); 22 23 public String getJobGroupName(); 24 25 public void setGroupName(String groupName); 26 27 public void setJobGroupName(String groupName); 28 }