This project has retired. For details please refer to its Attic page.
RegistrationInfo xref
View Javadoc
1   /*
2    * Copyright 2001-2011 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache 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    *      http://www.apache.org/licenses/LICENSE-2.0
8    * 
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
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   * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
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  }