Uses of Class
common.http.interceptor.ServletInterceptor
-
Packages that use ServletInterceptor Package Description common.http.error Package di utilità per la gestione degli errori nelle Java Servletcommon.http.interceptor Package contenente classi necessari per l'implementazione del meccanismo dei servlet interceptor.usecase.auth Package contenente la logica relativa alle autorizzazioni -
-
Uses of ServletInterceptor in common.http.error
Subclasses of ServletInterceptor in common.http.error Modifier and Type Class Description class
ForwardOnErrorInterceptor
class
JSONErrorInterceptor
-
Uses of ServletInterceptor in common.http.interceptor
Methods in common.http.interceptor that return ServletInterceptor Modifier and Type Method Description static <T extends Annotation>
ServletInterceptor<T>ServletInterceptorFactory. instantiate(T annotation)
Restituisce un'istanza diServletInterceptor
associata all'annotazione passata come parametro.
La classe concreta dell'oggetto restituito corrisponde a una sottoclasse diServletInterceptor
registrata nella classe factory per mezzo di una previa chiamata al metodoServletInterceptorFactory.register(Class)
.
Per poter essere istanziata dal factory, la classe concreta in questione deve possedere un costruttore vuoto pubblico.Method parameters in common.http.interceptor with type arguments of type ServletInterceptor Modifier and Type Method Description static void
ServletInterceptorFactory. register(Class<? extends ServletInterceptor<? extends Annotation>> interceptorClass)
Registra una sottoclasse diServletInterceptor
per una seguente istanziazione -
Uses of ServletInterceptor in usecase.auth
Subclasses of ServletInterceptor in usecase.auth Modifier and Type Class Description class
AuthorizationConstraintsInterceptor
-