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

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

Go to download

The Enterprise Security API (ESAPI) project is an OWASP project to create simple strong security controls for every web platform. Security controls are not simple to build. You can read about the hundreds of pitfalls for unwary developers on the OWASP website. By providing developers with a set of strong controls, we aim to eliminate some of the complexity of creating secure web applications. This can result in significant cost savings across the SDLC.

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