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

sk.seges.acris.security.server.spring.util.DummyAclCache Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package sk.seges.acris.security.server.spring.util;

import java.io.Serializable;

import org.springframework.security.acls.MutableAcl;
import org.springframework.security.acls.jdbc.AclCache;
import org.springframework.security.acls.objectidentity.ObjectIdentity;

public class DummyAclCache implements AclCache {

	public void evictFromCache(Serializable pk) {
	}

	public void evictFromCache(ObjectIdentity objectIdentity) {
	}

	public MutableAcl getFromCache(ObjectIdentity objectIdentity) {
		return null;
	}

	public MutableAcl getFromCache(Serializable pk) {
		return null;
	}

	public void putInCache(MutableAcl acl) {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy