
com.daedafusion.security.common.Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
The newest version!
package com.daedafusion.security.common;
import java.util.List;
import java.util.Set;
/**
* Created by mphilpot on 7/14/14.
*/
public interface Context
{
Set getKeys();
List getContext(String key);
void putContext(String key, List values);
void addContext(String key, String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy