
org.hpccsystems.ws.client.wrappers.DebugValueWrapper Maven / Gradle / Ivy
package org.hpccsystems.ws.client.wrappers;
public class DebugValueWrapper {
private String name;
private String value;
public DebugValueWrapper()
{
}
public DebugValueWrapper(String name,String value) {
this.name=name;
this.value=value;
}
public DebugValueWrapper(org.hpccsystems.ws.client.gen.wsworkunits.v1_69.DebugValue raw) {
name=raw.getName();
value=raw.getValue();
}
public DebugValueWrapper(org.hpccsystems.ws.client.gen.wsworkunits.v1_62.DebugValue raw) {
name=raw.getName();
value=raw.getValue();
}
public DebugValueWrapper(org.hpccsystems.ws.client.gen.wsworkunits.v1_58.DebugValue raw) {
name=raw.getName();
value=raw.getValue();
}
public DebugValueWrapper(org.hpccsystems.ws.client.gen.wsworkunits.v1_74.DebugValue raw)
{
name=raw.getName();
value=raw.getValue();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public org.hpccsystems.ws.client.gen.wsworkunits.v1_74.DebugValue getRawVersion1_74() {
org.hpccsystems.ws.client.gen.wsworkunits.v1_74.DebugValue val=new org.hpccsystems.ws.client.gen.wsworkunits.v1_74.DebugValue();
val.setName(this.getName());
val.setValue(this.getValue());
return val;
}
public org.hpccsystems.ws.client.gen.wsworkunits.v1_69.DebugValue getRawVersion1_69() {
org.hpccsystems.ws.client.gen.wsworkunits.v1_69.DebugValue result=new org.hpccsystems.ws.client.gen.wsworkunits.v1_69.DebugValue();
result.setName(name);
result.setValue(value);
return result;
}
public org.hpccsystems.ws.client.gen.wsworkunits.v1_62.DebugValue getRawVersion1_62() {
org.hpccsystems.ws.client.gen.wsworkunits.v1_62.DebugValue result=new org.hpccsystems.ws.client.gen.wsworkunits.v1_62.DebugValue();
result.setName(name);
result.setValue(value);
return result;
}
public org.hpccsystems.ws.client.gen.wsworkunits.v1_58.DebugValue getRawVersion1_58() {
org.hpccsystems.ws.client.gen.wsworkunits.v1_58.DebugValue result=new org.hpccsystems.ws.client.gen.wsworkunits.v1_58.DebugValue();
result.setName(name);
result.setValue(value);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy