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

com.sap.cds.services.request.FeatureToggle Maven / Gradle / Ivy

/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.services.request;

/**
 * Interface that provides information about a specific feature toggle.
 */
public interface FeatureToggle {

	/**
	 * @return The name of the feature
	 */
	String getName();

	/**
	 * @return {@code true} if the feature is enabled, {@code false} otherwise
	 */
	boolean isEnabled();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy