
org.bonitasoft.engine.sessionaccessor.ThreadLocalSessionAccessor Maven / Gradle / Ivy
/**
* Copyright (C) 2011 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation
* version 2.1 of the License.
* This library 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 Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.bonitasoft.engine.sessionaccessor;
import java.util.Map;
import java.util.Map.Entry;
/**
* @author Yanyan Liu
* @author Matthieu Chaffotte
*/
public class ThreadLocalSessionAccessor implements SessionAccessor {
private final Object mutex = new Object();
private final ThreadLocal> sessionData = new ThreadLocal>();
@Override
public long getSessionId() throws SessionIdNotSetException {
Long sessionId = null;
synchronized (mutex) {
final Entry entry = sessionData.get();
if (entry == null) {
throw new SessionIdNotSetException("No session set.");
}
sessionId = entry.getKey();
}
if (sessionId == null) {
throw new SessionIdNotSetException("No session set.");
}
return sessionId;
}
@Override
public void setSessionInfo(final long sessionId, final long tenantId) {
synchronized (mutex) {
sessionData.set(new SessionInfo(sessionId, tenantId));
}
}
@Override
public void deleteSessionId() {
synchronized (mutex) {
sessionData.remove();
}
}
@Override
public long getTenantId() throws TenantIdNotSetException {
Long tenantId = null;
synchronized (mutex) {
final Entry entry = sessionData.get();
if (entry == null) {
throw new TenantIdNotSetException("No tenantId set.");
}
tenantId = entry.getValue();
}
if (tenantId == null) {
throw new TenantIdNotSetException("No tenantId set.");
}
return tenantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy