org.hpccsystems.ws.client.wrappers.ClusterQueryWrapper Maven / Gradle / Ivy
package org.hpccsystems.ws.client.wrappers;
public class ClusterQueryWrapper
{
String name;
String errors;
boolean mixedNodeStates;
String state;
public ClusterQueryWrapper() {}
public ClusterQueryWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_75.ClusterQueryState raw)
{
this.name = raw.getCluster();
this.state = raw.getState();
this.errors = raw.getErrors();
this.mixedNodeStates = raw.getMixedNodeStates();
}
public String getCluster()
{
return name;
}
public void setCluster(String name)
{
this.name = name;
}
public String getErrors()
{
return errors;
}
public void setErrors(String errors)
{
this.errors = errors;
}
public boolean isMixedNodeStates()
{
return mixedNodeStates;
}
public void setMixedNodeStates(boolean mixedNodeStates)
{
this.mixedNodeStates = mixedNodeStates;
}
public String getState()
{
return state;
}
public void setState(String state)
{
this.state = state;
}
@Override
public String toString()
{
return "ClusterInfo [name=" + name + ", errors=" + errors + ", mixedNodeStates=" + mixedNodeStates + ", state=" + state + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy