All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.petruki.switcher.client.domain.criteria.SwitcherElement Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy