- Timestamp:
- 06/25/07 23:14:32 (18 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0-Beta2/components/server/src/ome/security/basic/EventHandler.java
r1237 r1672 88 88 /** 89 89 * invocation interceptor for prepairing this {@link Thread} for execution 90 * and subsequently reseting it. 90 * and subsequently reseting it. 91 91 * 92 92 * @see org.aopalliance.intercept.MethodInterceptor#invoke(org.aopalliance.intercept.MethodInvocation) … … 108 108 109 109 else { 110 secSys.loadEventContext( false);110 secSys.loadEventContext(readOnly); 111 111 objCtxMap.put(arg0.getThis(), secSys.getEventContext()); 112 112 prevCtx = secSys.getEventContext(); … … 114 114 } 115 115 } 116 // Need to update the read-ability 117 ((BasicEventContext)prevCtx).isReadOnly = readOnly; 116 118 secSys.setEventContext(prevCtx); 117 119 }
