view flys-client/src/main/java/de/intevation/flys/client/server/auth/was/User.java @ 4488:5041105d2edd

Check if response code from GGInA is 200 OK Only parse the GGInA response if the status code is 200 OK. This improves the error message if GGInA is not available and shows the real reason instead of a JDOM error while parsing the response.
author Björn Ricks <bjoern.ricks@intevation.de>
date Wed, 14 Nov 2012 10:36:21 +0100
parents 1387cdeb8d93
children
line wrap: on
line source
package de.intevation.flys.client.server.auth.was;

import java.util.Date;
import java.util.List;

import de.intevation.flys.client.server.auth.DefaultUser;

public class User
extends DefaultUser
implements de.intevation.flys.client.server.auth.User {

    private Assertion assertion;

    public User(String name,
        String       password,
        String       account,
        List<String> roles,
        Assertion    assertion,
        List<String> features
    ) {
        this.setName(name);
        this.setPassword(password);
        this.setRoles(roles);
        this.assertion = assertion;
        this.setAllowedFeatures(features);
        this.setAccount(account);
    }

    @Override
    public boolean hasExpired() {
        Date until = this.assertion.getUntil();
        if (until != null) {
            Date current = new Date();
            return !current.after(until);
        }
        return false;
    }
}

// vim:set ts=4 sw=4 si et fenc=utf8 tw=80:

http://dive4elements.wald.intevation.org