KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > ant > jonasbase > wsdl > Uddi


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 2004 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * Initial developer: Florent BENOIT
22  * --------------------------------------------------------------------------
23  * $Id: Uddi.java,v 1.1 2005/06/07 13:48:06 pelletib Exp $
24  * --------------------------------------------------------------------------
25  */

26
27 package org.objectweb.jonas.ant.jonasbase.wsdl;
28
29 /**
30  * Defines a UDDI configuration file for WSDL publish
31  * @author Florent Benoit
32  */

33 public class Uddi {
34
35     /**
36      * Class for RegistryWsdl handler
37      */

38     public static final String JavaDoc REGISTRYWSDLHANDLER_CLASS = "org.objectweb.jonas.ws.handler.RegistryWSDLHandler";
39
40     /**
41      * Name of the file
42      */

43     private String JavaDoc name = null;
44
45     /**
46      * Username
47      */

48     private String JavaDoc userName = null;
49
50     /**
51      * Password
52      */

53     private String JavaDoc password = null;
54
55     /**
56      * Organization name
57      */

58     private String JavaDoc orgName = null;
59
60     /**
61      * Organization Description
62      */

63     private String JavaDoc orgDesc = null;
64
65     /**
66      * Organization Person name
67      */

68     private String JavaDoc orgPersonName = null;
69
70     /**
71      * url : lifecyclemanagerURL
72      */

73     private String JavaDoc lifecyclemanagerURL = null;
74
75     /**
76      * url : queryManagerURL
77      */

78     private String JavaDoc queryManagerURL = null;
79
80     /**
81      * Gets the name
82      * @return the name.
83      */

84     public String JavaDoc getName() {
85         return name;
86     }
87
88     /**
89      * Sets the name
90      * @param name name to set.
91      */

92     public void setName(String JavaDoc name) {
93         this.name = name;
94     }
95
96     /**
97      * @return Returns the lifecyclemanagerURL.
98      */

99     public String JavaDoc getLifecyclemanagerURL() {
100         return lifecyclemanagerURL;
101     }
102
103     /**
104      * @param lifecyclemanagerURL The lifecyclemanagerURL to set.
105      */

106     public void setLifecyclemanagerURL(String JavaDoc lifecyclemanagerURL) {
107         this.lifecyclemanagerURL = lifecyclemanagerURL;
108     }
109
110     /**
111      * @return Returns the orgDesc.
112      */

113     public String JavaDoc getOrgDesc() {
114         return orgDesc;
115     }
116
117     /**
118      * @param orgDesc The orgDesc to set.
119      */

120     public void setOrgDesc(String JavaDoc orgDesc) {
121         this.orgDesc = orgDesc;
122     }
123
124     /**
125      * @return Returns the orgName.
126      */

127     public String JavaDoc getOrgName() {
128         return orgName;
129     }
130
131     /**
132      * @param orgName The orgName to set.
133      */

134     public void setOrgName(String JavaDoc orgName) {
135         this.orgName = orgName;
136     }
137
138     /**
139      * @return Returns the orgPersonName.
140      */

141     public String JavaDoc getOrgPersonName() {
142         return orgPersonName;
143     }
144
145     /**
146      * @param orgPersonName The orgPersonName to set.
147      */

148     public void setOrgPersonName(String JavaDoc orgPersonName) {
149         this.orgPersonName = orgPersonName;
150     }
151
152     /**
153      * @return Returns the password.
154      */

155     public String JavaDoc getPassword() {
156         return password;
157     }
158
159     /**
160      * @param password The password to set.
161      */

162     public void setPassword(String JavaDoc password) {
163         this.password = password;
164     }
165
166     /**
167      * @return Returns the queryManagerURL.
168      */

169     public String JavaDoc getQueryManagerURL() {
170         return queryManagerURL;
171     }
172
173     /**
174      * @param queryManagerURL The queryManagerURL to set.
175      */

176     public void setQueryManagerURL(String JavaDoc queryManagerURL) {
177         this.queryManagerURL = queryManagerURL;
178     }
179
180     /**
181      * @return Returns the userName.
182      */

183     public String JavaDoc getUserName() {
184         return userName;
185     }
186
187     /**
188      * @param userName The userName to set.
189      */

190     public void setUserName(String JavaDoc userName) {
191         this.userName = userName;
192     }
193 }
Popular Tags