Coverage Report - org.kuali.student.common.ws.beans.JaxWsClientFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
JaxWsClientFactory
N/A
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.common.ws.beans;
 17  
 
 18  
 import javax.xml.namespace.QName;
 19  
 
 20  
 import org.springframework.beans.factory.FactoryBean;
 21  
 
 22  
 /**
 23  
  * This is a description of what this class does - Will Gomes don't forget to fill this in. 
 24  
  * 
 25  
  */
 26  
 public interface JaxWsClientFactory extends FactoryBean{
 27  
     
 28  
     public Class<?> getServiceEndpointInterface();
 29  
 
 30  
     /**
 31  
      * @param serviceEndpointInterface
 32  
      *            the serviceEndpointInterface to set
 33  
      */
 34  
     public void setServiceEndpointInterface(
 35  
             Class<?> serviceEndpointInterface);
 36  
 
 37  
     /**
 38  
      * @return the serviceName
 39  
      */
 40  
     public QName getServiceName();
 41  
 
 42  
     /**
 43  
      * @param serviceName
 44  
      *            the serviceName to set
 45  
      */
 46  
     public void setServiceName(QName serviceName);
 47  
 
 48  
     /**
 49  
      * @return the wsdlDocumentLocation
 50  
      */
 51  
     public String getWsdlLocation();
 52  
 
 53  
     /**
 54  
      * @param wsdlDocumentLocation the wsdlDocumentLocation to set
 55  
      */
 56  
     public void setWsdlLocation(String wsdlLocation);
 57  
 
 58  
     /**
 59  
      * @return the service address
 60  
      */
 61  
     public String getAddress();
 62  
 
 63  
     /**
 64  
      * @param add the service address to set
 65  
      */
 66  
     public void setAddress(String add);
 67  
     
 68  
 }