blob: fd94e2e34374eee5159a17d9a8ec292850104882 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20060728 145426 kathy@ca.ibm.com - Kathy Chan
*******************************************************************************/
package org.eclipse.wst.ws.internal.wsrt;
public class WebServiceClientInfo {
private WebServiceState state;
private java.lang.String serverFactoryId;
private java.lang.String serverInstanceId;
private java.lang.String webServiceRuntimeId;
private java.lang.String wsdlURL;
private java.lang.String implURL;
private java.lang.String proxyEndpoint = null;
public java.lang.String getImplURL() {
return implURL;
}
public void setImplURL(java.lang.String implURL) {
this.implURL = implURL;
}
public java.lang.String getServerFactoryId() {
return serverFactoryId;
}
public void setServerFactoryId(java.lang.String serverFactoryId) {
this.serverFactoryId = serverFactoryId;
}
public java.lang.String getServerInstanceId() {
return serverInstanceId;
}
public void setServerInstanceId(java.lang.String serverInstanceId) {
this.serverInstanceId = serverInstanceId;
}
public WebServiceState getState() {
return state;
}
public void setState(WebServiceState state) {
this.state = state;
}
public java.lang.String getWebServiceRuntimeId() {
return webServiceRuntimeId;
}
public void setWebServiceRuntimeId(java.lang.String webServiceRuntimeId) {
this.webServiceRuntimeId = webServiceRuntimeId;
}
public java.lang.String getWsdlURL() {
return wsdlURL;
}
public void setWsdlURL(java.lang.String wsdlURL) {
this.wsdlURL = wsdlURL;
}
public java.lang.String getProxyEndpoint() {
return proxyEndpoint;
}
public void setProxyEndpoint(java.lang.String proxyEndpoint) {
this.proxyEndpoint = proxyEndpoint;
}
}