List of usage examples for org.apache.shiro.subject.support SubjectThreadState restore
public void restore()
From source file:de.cosmocode.palava.ipc.security.IpcCallSecurityContext.java
License:Apache License
@Override public void eventIpcCallDestroy(IpcCall call) { final SubjectThreadState state = call.remove(CALL_KEY); LOG.trace("Switching thread back to pre-call state"); state.restore(); }