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