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

org.owasp.esapi.reference.accesscontrol.EchoRuntimeParameterACR Maven / Gradle / Ivy

package org.owasp.esapi.reference.accesscontrol;

public class EchoRuntimeParameterACR extends BaseACR{

	/**
	 * Returns true iff runtimeParameter is a Boolean true.
	 * throws ClassCastException if runtimeParameter is not a Boolean.
	 */
	public boolean isAuthorized(Boolean runtimeParameter) throws ClassCastException{
		return runtimeParameter.booleanValue();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy