(Request request, String name)
| 3243 | static { |
| 3244 | specialAttributes.put(Globals.DISPATCHER_TYPE_ATTR, new SpecialAttributeAdapter() { |
| 3245 | @Override |
| 3246 | public Object get(Request request, String name) { |
| 3247 | return (request.internalDispatcherType == null) ? DispatcherType.REQUEST : |
| 3248 | request.internalDispatcherType; |
| 3249 | } |
| 3250 | |
| 3251 | @Override |
| 3252 | public void set(Request request, String name, Object value) { |
nothing calls this directly
no test coverage detected