com.emc.storageos.model.customconfig.VariableParam Maven / Gradle / Ivy
/*
* Copyright (c) 2014 EMC Corporation
* All Rights Reserved
*/
package com.emc.storageos.model.customconfig;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "variable")
public class VariableParam {
private String name;
private String sampleValue;
private boolean isRecommended;
/**
* The name of the variable
*
* @valid none
*/
@XmlElement(name = "display_name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* The sample value of the variable
*
* @valid none
*/
@XmlElement(name = "sample_value")
public String getSampleValue() {
return sampleValue;
}
public void setSampleValue(String sample) {
this.sampleValue = sample;
}
/**
* Whether or not this variable is recommended to be used when constructing the
* config value
*
* @valid true
* @valid false
*/
@XmlElement(name = "recommended")
public boolean getIsRecommended() {
return isRecommended;
}
public void setIsRecommended(boolean isRecommended) {
this.isRecommended = isRecommended;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy