package pl.edu.mimuw.cloudatlas.client; import pl.edu.mimuw.cloudatlas.model.Value; public class AttributeInput { private String zoneName; private String attributeName; private String valueString; private String attributeType; private Value value; public String getZoneName() { return zoneName; } public void setZoneName(String zoneName) { this.zoneName = zoneName; } public String getAttributeName() { return attributeName; } public void setAttributeName(String attributeName) { this.attributeName = attributeName; } public String getValueString() { return valueString; } public void setValueString(String valueString) { this.valueString = valueString; } public Value getValue() { return value; } public void setValue(Value value) { this.value = value; } public String getAttributeType() { return attributeType; } public void setAttributeType(String attributeType) { this.attributeType = attributeType; } }