view src/main/java/de/intevation/lada/auth/Authentication.java @ 232:d8a3d188046f

Renamed package authentication to auth.
author Raimund Renkert <rrenkert@intevation.de>
date Fri, 05 Jul 2013 13:24:13 +0200
parents src/main/java/de/intevation/lada/authentication/Authentication.java@d9d1a46af55d
children 49d0becf3c65
line wrap: on
line source
package de.intevation.lada.auth;

import javax.ws.rs.core.HttpHeaders;

/**
 * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
 */
public interface Authentication
{
    public boolean isAuthorizedUser(HttpHeaders headers)
    throws AuthenticationException;

    public AuthenticationResponse authorizedGroups(HttpHeaders headers)
    throws AuthenticationException;

    public boolean hasAccess(HttpHeaders headers, String probeId)
    throws AuthenticationException;
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)