Coverage Report - org.kuali.rice.ksb.messaging.web.ServiceRegistryForm
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceRegistryForm
0%
0/25
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 java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 import org.apache.struts.action.ActionForm;
 22  
 import org.kuali.rice.ksb.messaging.ServiceInfo;
 23  
 
 24  
 
 25  
 /**
 26  
  * Struts ActionForm for the {@link ServiceRegistryAction}.
 27  
  *
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  *
 30  
  */
 31  0
 public class ServiceRegistryForm extends ActionForm {
 32  
 
 33  
     private String methodToCall;
 34  0
     private List<ServiceInfo> publishedServices = new ArrayList<ServiceInfo>();
 35  0
     private List<ServiceInfo> publishedTempServices = new ArrayList<ServiceInfo>();
 36  0
     private List<ServiceInfo> globalRegistryServices = new ArrayList<ServiceInfo>();
 37  
 
 38  
     private String myIpAddress;
 39  
     private String myServiceNamespace;
 40  
     private Boolean devMode;
 41  
 
 42  
     public String getMethodToCall() {
 43  0
         return this.methodToCall;
 44  
     }
 45  
     public void setMethodToCall(String methodToCall) {
 46  0
         this.methodToCall = methodToCall;
 47  0
     }
 48  
     public List<ServiceInfo> getGlobalRegistryServices() {
 49  0
         return this.globalRegistryServices;
 50  
     }
 51  
     public void setGlobalRegistryServices(List<ServiceInfo> globalRegistryServices) {
 52  0
         this.globalRegistryServices = globalRegistryServices;
 53  0
     }
 54  
     public List<ServiceInfo> getPublishedServices() {
 55  0
         return this.publishedServices;
 56  
     }
 57  
     public void setPublishedServices(List<ServiceInfo> publishedServices) {
 58  0
         this.publishedServices = publishedServices;
 59  0
     }
 60  
     public List<ServiceInfo> getPublishedTempServices() {
 61  0
         return this.publishedTempServices;
 62  
     }
 63  
     public void setPublishedTempServices(List<ServiceInfo> publishedTempServices) {
 64  0
         this.publishedTempServices = publishedTempServices;
 65  0
     }
 66  
     public String getMyIpAddress() {
 67  0
         return this.myIpAddress;
 68  
     }
 69  
     public void setMyIpAddress(String myIpAddress) {
 70  0
         this.myIpAddress = myIpAddress;
 71  0
     }
 72  
     public String getMyServiceNamespace() {
 73  0
         return this.myServiceNamespace;
 74  
     }
 75  
     public void setMyServiceNamespace(String myServiceNamespace) {
 76  0
         this.myServiceNamespace = myServiceNamespace;
 77  0
     }
 78  
     public Boolean getDevMode() {
 79  0
         return this.devMode;
 80  
     }
 81  
     public void setDevMode(Boolean devMode) {
 82  0
         this.devMode = devMode;
 83  0
     }
 84  
 
 85  
 }