Coverage Report - org.kuali.rice.ksb.messaging.web.ThreadPoolForm
 
Classes in this File Line Coverage Branch Coverage Complexity
ThreadPoolForm
0%
0/23
N/A
1
 
 1  
 /*
 2  
  * Copyright 2006-2011 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  
 
 17  
 package org.kuali.rice.ksb.messaging.web;
 18  
 
 19  
 import org.apache.struts.action.ActionForm;
 20  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 21  
 import org.kuali.rice.ksb.messaging.threadpool.KSBThreadPool;
 22  
 import org.kuali.rice.ksb.util.KSBConstants;
 23  
 
 24  
 
 25  
 /**
 26  
  * Struts ActionForm for the {@link ThreadPoolAction}.
 27  
  *
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  *
 30  
  */
 31  0
 public class ThreadPoolForm extends ActionForm {
 32  
 
 33  
     private static final long serialVersionUID = 6670668383823543732L;
 34  
 
 35  
     private String methodToCall;
 36  
     private KSBThreadPool threadPool;
 37  
     private Integer corePoolSize; //editable
 38  
     private Integer maximumPoolSize; //editable
 39  
 
 40  
     private boolean allServers;
 41  
     private Long timeIncrement;
 42  
     private Long maxRetryAttempts;
 43  
 
 44  
     public String getMethodToCall() {
 45  0
         return this.methodToCall;
 46  
     }
 47  
     public void setMethodToCall(String methodToCall) {
 48  0
         this.methodToCall = methodToCall;
 49  0
     }
 50  
     public Integer getCorePoolSize() {
 51  0
         return this.corePoolSize;
 52  
     }
 53  
     public void setCorePoolSize(Integer corePoolSize) {
 54  0
         this.corePoolSize = corePoolSize;
 55  0
     }
 56  
     public Integer getMaximumPoolSize() {
 57  0
         return this.maximumPoolSize;
 58  
     }
 59  
     public void setMaximumPoolSize(Integer maximumPoolSize) {
 60  0
         this.maximumPoolSize = maximumPoolSize;
 61  0
     }
 62  
     public KSBThreadPool getThreadPool() {
 63  0
         return this.threadPool;
 64  
     }
 65  
     public void setThreadPool(KSBThreadPool threadPool) {
 66  0
         this.threadPool = threadPool;
 67  0
     }
 68  
     public boolean isAllServers() {
 69  0
         return this.allServers;
 70  
     }
 71  
     public void setAllServers(boolean allServers) {
 72  0
         this.allServers = allServers;
 73  0
     }
 74  
     public String getServiceNamespace() {
 75  0
         return ConfigContext.getCurrentContextConfig().getProperty(KSBConstants.Config.SERVICE_NAMESPACE);
 76  
     }
 77  
     public Long getMaxRetryAttempts() {
 78  0
         return this.maxRetryAttempts;
 79  
     }
 80  
     public void setMaxRetryAttempts(Long maxRetryAttempts) {
 81  0
         this.maxRetryAttempts = maxRetryAttempts;
 82  0
     }
 83  
     public Long getTimeIncrement() {
 84  0
         return this.timeIncrement;
 85  
     }
 86  
     public void setTimeIncrement(Long timeIncrement) {
 87  0
         this.timeIncrement = timeIncrement;
 88  0
     }
 89  
 
 90  
 }