org.hpccsystems.ws.client.platform.NamedValueInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsclient Show documentation
Show all versions of wsclient Show documentation
This project allows a user to interact with ESP services in a controlled manner. The API calls available under org.hpccsystems.ws.client.platform allow for a user to target ESP's across multiple environments running a range of hpccsystems-platform versions. There is no guarantee that if a user utilizes org.hpccsystems.ws.client.gen generated stub code from wsdl, that the calls will be backwards compatible with older hpccsystems-platform versions.
package org.hpccsystems.ws.client.platform;
import org.hpccsystems.ws.client.gen.wsworkunits.v1_74.NamedValue;
public class NamedValueInfo {
private String name;
private String value;
public NamedValueInfo() {}
public NamedValueInfo(String name,String value)
{
this.name=name;
this.value=value;
}
public NamedValueInfo(NamedValue raw)
{
name=raw.getName();
value=raw.getValue();
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public NamedValue getRaw()
{
NamedValue nv=new NamedValue(name,value);
return nv;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy