1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.transport.quartz.config; 8 9 import java.io.Serializable; 10 11 import org.quartz.Job; 12 13 /** 14 * The generic interface for Job Configuration endpoints that are described on Quartz 15 * endpoints 16 */ 17 public interface JobConfig extends Serializable 18 { 19 public Class<? extends Job> 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 }