Projet

Général

Profil

Télécharger (2,44 ko) Statistiques
| Branche: | Tag: | Révision:
/*
* This program is a part of the IoTa Project.
*
* Copyright © 2011-2012 Université de Caen Basse-Normandie, GREYC
* Copyright © 2011 Orange Labs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <http://www.gnu.org/licenses/>
*
* See AUTHORS for a list of contributors.
*/
package fr.unicaen.iota.epcisphi.utils;

import fr.unicaen.iota.eta.user.client.GatewayClient;
import fr.unicaen.iota.eta.user.userservice.UserInfoOut;
import fr.unicaen.iota.eta.user.userservice_wsdl.ImplementationExceptionResponse;
import fr.unicaen.iota.eta.user.userservice_wsdl.SecurityExceptionResponse;
import javax.servlet.http.HttpSession;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class SessionLoader {

private SessionLoader() {
}
private static final Log LOG = LogFactory.getLog(SessionLoader.class);

public static synchronized String loadSession(String sessionId, String userId, HttpSession session) throws SecurityExceptionResponse {
try {
GatewayClient client = new GatewayClient(Constants.USERSERVICE_ADDRESS);
UserInfoOut uInfo = client.userInfo(sessionId, userId);
session.setAttribute("uInfo", uInfo);
/*
* TODO PartnerInfo pInfo = GatewayClient.partnerInfo(sessionId,
* uInfo.getPartnerId()); session.setAttribute("pInfo", pInfo);
*/
session.setAttribute("session-id", sessionId);
return "";
} catch (ImplementationExceptionResponse ex) {
LOG.error("An error occurred", ex);
return "?message=" + ex.getMessage();
} catch (SecurityExceptionResponse ex) {
LOG.error("A security error occurred", ex);
return "?message=" + ex.getMessage();
}
}

public static void clearSession(HttpSession session) {
session.setAttribute("session-id", null);
session.setAttribute("uInfo", null);
// TODO session.setAttribute("pInfo", null);
}
}
(7-7/8)