net.sf.javaprinciples.resource.ResourceSecurity Maven / Gradle / Ivy
package net.sf.javaprinciples.resource;
/**
*
* @author wslade
*
*/
public interface ResourceSecurity
{
/**
*
* @param domainKey The value provided by the client
* @param domainString The host of the client
* @throws ResourceSecurityException When the check fails.
*/
public void checkSecurity(String domainKey, String domainString) throws ResourceSecurityException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy