view flys-client/src/main/java/de/intevation/flys/client/server/auth/Authentication.java @ 3490:5f628a13ca9f

Removed superfluous imports. flys-client/trunk@5194 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 13 Aug 2012 07:58:47 +0000
parents 98c7a46ec5ae
children
line wrap: on
line source
package de.intevation.flys.client.server.auth;

/** Interface to represent user authentications
 */
public interface Authentication {

    /** Returns true if the authentication was successfull
     */
    public boolean isSuccess();

    /** Returns a new User object
     */
    public User getUser() throws AuthenticationException;

}

http://dive4elements.wald.intevation.org