private Object interceptGet(String name, Object value) {
for (SessionInterceptor l : getSessionRequestContext().getSessionConfig().getSessionInterceptors()) {
if (l instanceof SessionAttributeInterceptor) {
SessionAttributeInterceptor interceptor = (SessionAttributeInterceptor) l;
value = interceptor.onRead(name, value);
}
}
return value;
}