
org.objectweb.jonas.ant.jonasbase.wsdl.Uddi Maven / Gradle / Ivy
The newest version!
/**
* JOnAS: Java(TM) Open Application Server
* Copyright (C) 2004 Bull S.A.
* Contact: [email protected]
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* Initial developer: Florent BENOIT
* --------------------------------------------------------------------------
* $Id: Uddi.java 10587 2007-06-11 11:57:36Z sauthieg $
* --------------------------------------------------------------------------
*/
package org.objectweb.jonas.ant.jonasbase.wsdl;
/**
* Defines a UDDI configuration file for WSDL publish
* @author Florent Benoit
*/
public class Uddi {
/**
* Class for RegistryWsdl handler
*/
public static final String REGISTRYWSDLHANDLER_CLASS = "org.objectweb.jonas.ws.base.handler.RegistryWSDLHandler";
/**
* Name of the file
*/
private String name = null;
/**
* Username
*/
private String userName = null;
/**
* Password
*/
private String password = null;
/**
* Organization name
*/
private String orgName = null;
/**
* Organization Description
*/
private String orgDesc = null;
/**
* Organization Person name
*/
private String orgPersonName = null;
/**
* url : lifecyclemanagerURL
*/
private String lifecyclemanagerURL = null;
/**
* url : queryManagerURL
*/
private String queryManagerURL = null;
/**
* Gets the name
* @return the name.
*/
public String getName() {
return name;
}
/**
* Sets the name
* @param name name to set.
*/
public void setName(String name) {
this.name = name;
}
/**
* @return Returns the lifecyclemanagerURL.
*/
public String getLifecyclemanagerURL() {
return lifecyclemanagerURL;
}
/**
* @param lifecyclemanagerURL The lifecyclemanagerURL to set.
*/
public void setLifecyclemanagerURL(String lifecyclemanagerURL) {
this.lifecyclemanagerURL = lifecyclemanagerURL;
}
/**
* @return Returns the orgDesc.
*/
public String getOrgDesc() {
return orgDesc;
}
/**
* @param orgDesc The orgDesc to set.
*/
public void setOrgDesc(String orgDesc) {
this.orgDesc = orgDesc;
}
/**
* @return Returns the orgName.
*/
public String getOrgName() {
return orgName;
}
/**
* @param orgName The orgName to set.
*/
public void setOrgName(String orgName) {
this.orgName = orgName;
}
/**
* @return Returns the orgPersonName.
*/
public String getOrgPersonName() {
return orgPersonName;
}
/**
* @param orgPersonName The orgPersonName to set.
*/
public void setOrgPersonName(String orgPersonName) {
this.orgPersonName = orgPersonName;
}
/**
* @return Returns the password.
*/
public String getPassword() {
return password;
}
/**
* @param password The password to set.
*/
public void setPassword(String password) {
this.password = password;
}
/**
* @return Returns the queryManagerURL.
*/
public String getQueryManagerURL() {
return queryManagerURL;
}
/**
* @param queryManagerURL The queryManagerURL to set.
*/
public void setQueryManagerURL(String queryManagerURL) {
this.queryManagerURL = queryManagerURL;
}
/**
* @return Returns the userName.
*/
public String getUserName() {
return userName;
}
/**
* @param userName The userName to set.
*/
public void setUserName(String userName) {
this.userName = userName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy