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

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

package org.owasp.esapi.reference.accesscontrol;

import org.owasp.esapi.AccessControlRule;

abstract public class BaseACR implements AccessControlRule {

	protected P policyParameters;
	
//	@Override
	public void setPolicyParameters(P policyParameter) {
		this.policyParameters = policyParameter;
	}
	
//	@Override
	public P getPolicyParameters() {
		return policyParameters;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy