Coverage Report - org.kuali.rice.ksb.messaging.web.QuartzQueueForm
 
Classes in this File Line Coverage Branch Coverage Complexity
QuartzQueueForm
0%
0/17
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.ksb.messaging.web;
 17  
 
 18  
 import org.apache.struts.action.ActionForm;
 19  
 import org.quartz.JobDetail;
 20  
 import org.quartz.Trigger;
 21  
 
 22  
 
 23  
 /**
 24  
  * Struts form for quartz queue processing 
 25  
  * 
 26  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 27  
  *
 28  
  */
 29  
 public class QuartzQueueForm extends ActionForm {
 30  
 
 31  
     private static final long serialVersionUID = 4589673941470488079L;
 32  
     
 33  
     private String jobName;
 34  
     private String jobGroup;
 35  
     private JobDetail jobDetail;
 36  
     private Trigger trigger;
 37  
     
 38  0
     public QuartzQueueForm() {}
 39  
     
 40  0
     public QuartzQueueForm(JobDetail jobDetail, Trigger trigger) {
 41  0
         this.jobDetail = jobDetail;
 42  0
         this.trigger = trigger;
 43  0
     }
 44  
     
 45  
     public JobDetail getJobDetail() {
 46  0
         return this.jobDetail;
 47  
     }
 48  
     public void setJobDetail(JobDetail jobDetail) {
 49  0
         this.jobDetail = jobDetail;
 50  0
     }
 51  
     public Trigger getTrigger() {
 52  0
         return this.trigger;
 53  
     }
 54  
     public void setTrigger(Trigger trigger) {
 55  0
         this.trigger = trigger;
 56  0
     }
 57  
     public String getJobGroup() {
 58  0
         return this.jobGroup;
 59  
     }
 60  
     public void setJobGroup(String jobGroup) {
 61  0
         this.jobGroup = jobGroup;
 62  0
     }
 63  
     public String getJobName() {
 64  0
         return this.jobName;
 65  
     }
 66  
     public void setJobName(String jobName) {
 67  0
         this.jobName = jobName;
 68  0
     }   
 69  
 }