view flys-client/src/main/java/de/intevation/flys/client/server/RemoteServiceServlet.java @ 4549:9a2432485371

Allow requests from localhost in GGInA filter Fix print-server and possible other services by allowing request from out current machine.
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 16 Nov 2012 11:56:43 +0100
parents 887d7001eeec
children
line wrap: on
line source
package de.intevation.flys.client.server;

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

import javax.servlet.http.HttpSession;

public class RemoteServiceServlet
extends      com.google.gwt.user.server.rpc.RemoteServiceServlet
{
    /**
     * Return the current logged in user from the HTTP Session
     */
    public User getUser() {
        HttpSession session = this.getThreadLocalRequest().getSession();
        return (User)session.getAttribute("user");
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org