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

net.anotheria.moskito.webui.Features Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.webui;

/**
 * This enum contains Features that can be switched off.
 *
 * @author lrosenberg
 * @since 20.04.15 17:12
 */
public enum Features {
	PRODUCER_FILTERING{
		public boolean isEnabled(){
			try{
				Boolean flag = (Boolean)MoSKitoWebUIContext.getCallContext().getAttribute(name());
				if (flag != null && flag == Boolean.FALSE)
					return false;
			}catch(Exception any){}
			return true;
		}
	};

	public abstract boolean isEnabled();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy