com.hashmapinc.tempus.witsml.client.AbstractStoreSoapBindingStub Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of witsml-client Show documentation
Show all versions of witsml-client Show documentation
This library assists in querying a WITSML server for 1.3.1.1 data or 1.4.1.1 data
The newest version!
package com.hashmapinc.tempus.witsml.client;
import org.apache.axis2.client.Stub;
public abstract class AbstractStoreSoapBindingStub extends Stub implements StoreSoapPort_PortType {
private String username;
private String password;
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
}