Skip to content
Snippets Groups Projects
Commit 4c2b51cc authored by brinn's avatar brinn
Browse files

Expose method checkSession() to IServer.

SVN: 26263
parent f126bc11
No related branches found
No related tags found
No related merge requests found
...@@ -362,7 +362,8 @@ public abstract class AbstractServer<T> extends AbstractServiceWithLogger<T> imp ...@@ -362,7 +362,8 @@ public abstract class AbstractServer<T> extends AbstractServiceWithLogger<T> imp
// Call this when session object is not needed but you want just to // Call this when session object is not needed but you want just to
// refresh/check the session. // refresh/check the session.
protected void checkSession(final String sessionToken) @Override
public void checkSession(final String sessionToken) throws InvalidSessionException
{ {
getSession(sessionToken); getSession(sessionToken);
} }
......
...@@ -236,10 +236,16 @@ public abstract class AbstractServerLogger implements IServer ...@@ -236,10 +236,16 @@ public abstract class AbstractServerLogger implements IServer
@Override @Override
public SessionContextDTO tryGetSession(String sessionToken) public SessionContextDTO tryGetSession(String sessionToken)
{ {
logAccess(sessionToken, "tryGetCurrentSession"); logAccess(sessionToken, "tryGetSession", "SESSION(%s)", sessionToken);
return null; return null;
} }
@Override
public void checkSession(String sessionToken) throws InvalidSessionException
{
logAccess(sessionToken, "checkSession", "SESSION(%s)", sessionToken);
}
@Override @Override
public final void logout(final String sessionToken) throws UserFailureException public final void logout(final String sessionToken) throws UserFailureException
{ {
......
...@@ -21,6 +21,7 @@ import java.util.List; ...@@ -21,6 +21,7 @@ import java.util.List;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import ch.systemsx.cisd.common.exceptions.AuthorizationFailureException; import ch.systemsx.cisd.common.exceptions.AuthorizationFailureException;
import ch.systemsx.cisd.common.exceptions.InvalidSessionException;
import ch.systemsx.cisd.common.exceptions.UserFailureException; import ch.systemsx.cisd.common.exceptions.UserFailureException;
import ch.systemsx.cisd.openbis.generic.shared.authorization.ISessionProvider; import ch.systemsx.cisd.openbis.generic.shared.authorization.ISessionProvider;
import ch.systemsx.cisd.openbis.generic.shared.authorization.annotation.RolesAllowed; import ch.systemsx.cisd.openbis.generic.shared.authorization.annotation.RolesAllowed;
...@@ -70,6 +71,13 @@ public interface IServer extends ISessionProvider ...@@ -70,6 +71,13 @@ public interface IServer extends ISessionProvider
/** @return session for the specified token or null if session has expired */ /** @return session for the specified token or null if session has expired */
public SessionContextDTO tryGetSession(String sessionToken); public SessionContextDTO tryGetSession(String sessionToken);
/**
* Checks that the session is valid.
*
* @throws InvalidSessionException If the session is not valid.
*/
public void checkSession(final String sessionToken) throws InvalidSessionException;
/** /**
* Sets the base URL (including "index.html") that the web server is reachable at for this * Sets the base URL (including "index.html") that the web server is reachable at for this
* client. * client.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment