This project has retired. For details please refer to its
        
        Attic page.
      
 
RegistrationInfo xref
1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  package org.apache.juddi.v3.client.mapping;
16  
17  import java.io.Serializable;
18  import java.net.URL;
19  
20  import javax.wsdl.Definition;
21  import javax.xml.namespace.QName;
22  
23  
24  
25  
26  public class RegistrationInfo implements Serializable{
27  	
28  	private static final long serialVersionUID = 8589346728228576240L;
29  	private QName serviceQName;
30  	private String portName;
31  	private URL serviceUrl;
32  	private URL wsdlUrl;
33  	private Definition wsdlDefinition;
34  	private String version;
35  	private RegistrationType registrationType;
36  	
37  	public QName getServiceQName() {
38  		return serviceQName;
39  	}
40  	public void setServiceQName(QName serviceQName) {
41  		this.serviceQName = serviceQName;
42  	}
43  	public String getPortName() {
44  		return portName;
45  	}
46  	public void setPortName(String portName) {
47  		this.portName = portName;
48  	}
49  	public URL getServiceUrl() {
50  		return serviceUrl;
51  	}
52  	public void setServiceUrl(URL serviceUrl) {
53  		this.serviceUrl = serviceUrl;
54  	}
55  	public Definition getWsdlDefinition() {
56  		return wsdlDefinition;
57  	}
58  	public void setWsdlDefinition(Definition wsdlDefinition) {
59  		this.wsdlDefinition = wsdlDefinition;
60  	}
61  	public RegistrationType getRegistrationType() {
62  		return registrationType;
63  	}
64  	public void setRegistrationType(RegistrationType registrationType) {
65  		this.registrationType = registrationType;
66  	}
67  	public String getVersion() {
68  		return version;
69  	}
70  	public void setVersion(String version) {
71  		this.version = version;
72  	}
73  	public URL getWsdlUrl() {
74  		return wsdlUrl;
75  	}
76  	public void setWsdlUrl(URL wsdlUrl) {
77  		this.wsdlUrl = wsdlUrl;
78  	}
79  	
80  	
81  }