
com.daedafusion.security.admin.DomainAdmin 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
package com.daedafusion.security.admin;
import com.daedafusion.security.authentication.Subject;
import com.daedafusion.security.common.Domain;
import com.daedafusion.security.exceptions.NotFoundException;
import com.daedafusion.security.exceptions.UnauthorizedException;
import java.util.List;
/**
* Created by mphilpot on 7/19/14.
*/
public interface DomainAdmin
{
void createDomain(Subject subject, Domain domain) throws UnauthorizedException;
void updateDomain(Subject subject, Domain domain) throws UnauthorizedException, NotFoundException;
void removeDomain(Subject subject, String domain) throws UnauthorizedException, NotFoundException;
List listDomains(Subject subject) throws UnauthorizedException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy