1 16 17 package org.springframework.web.portlet; 18 19 28 public class HandlerExecutionChain { 29 30 private Object handler; 31 32 private HandlerInterceptor[] interceptors; 33 34 35 39 public HandlerExecutionChain(Object handler) { 40 this.handler = handler; 41 } 42 43 49 public HandlerExecutionChain(Object handler, HandlerInterceptor[] interceptors) { 50 this.handler = handler; 51 this.interceptors = interceptors; 52 } 53 54 55 59 public Object getHandler() { 60 return this.handler; 61 } 62 63 67 public HandlerInterceptor[] getInterceptors() { 68 return this.interceptors; 69 } 70 71 } 72 | Popular Tags |