com.github.petruki.switcher.client.domain.criteria.SwitcherElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of switcher-client Show documentation
Show all versions of switcher-client Show documentation
Switcher Client for working with Switcher API
package com.github.petruki.switcher.client.domain.criteria;
/**
* @author rogerio
* @since 2019-12-24
*/
abstract class SwitcherElement {
protected String description;
protected boolean activated;
public String getDescription() {
return description;
}
public boolean isActivated() {
return activated;
}
}