
com.github.switcherapi.client.model.criteria.SwitcherElement Maven / Gradle / Ivy
package com.github.switcherapi.client.model.criteria;
/**
* @author Roger Floriano (petruki)
* @since 2019-12-24
*/
abstract class SwitcherElement {
protected String description;
protected boolean activated;
public String getDescription() {
return description;
}
public boolean isActivated() {
return activated;
}
public void setDescription(String description) {
this.description = description;
}
public void setActivated(boolean activated) {
this.activated = activated;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy