Package com.pixelservices.flash.utils
Class HDIUtils
java.lang.Object
com.pixelservices.flash.utils.HDIUtils
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic List
<Class<? extends RequestHandler>> detectHDIChain
(Class<? extends RequestHandler> clazz) Detects the chain of Handler Default Implementations (HDIs) that a given handler extends.
-
Constructor Details
-
HDIUtils
public HDIUtils()
-
-
Method Details
-
detectHDIChain
public static List<Class<? extends RequestHandler>> detectHDIChain(Class<? extends RequestHandler> clazz) Detects the chain of Handler Default Implementations (HDIs) that a given handler extends. The list includes all superclasses up to (but excluding) RequestHandler.- Parameters:
clazz
- The handler class to analyze.- Returns:
- A list of HDI classes, ordered from the closest HDI to the furthest one.
-