Class DeploymentLifecycleUtil
- java.lang.Object
-
- lumis.portal.deployment.lifecycle.DeploymentLifecycleUtil
-
public class DeploymentLifecycleUtil extends java.lang.Object
Utility class to deal with deployment lifecycle.- Since:
- 16.0.0
- Version:
- $Revision: 25808 $ $Date: 2023-07-04 15:20:55 -0300 (Tue, 04 Jul 2023) $
-
-
Constructor Summary
Constructors Constructor Description DeploymentLifecycleUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Collection<java.lang.reflect.Method>
getAfterClassLoaderStartMethods(java.lang.Class<?> clazz)
Returns theAfterClassLoaderStarted
methods in the given class.static java.util.Collection<java.lang.reflect.Method>
getBeforeClassLoaderStopMethods(java.lang.Class<?> clazz)
Returns theBeforeClassLoaderStop
methods in the given class.
-
-
-
Method Detail
-
getBeforeClassLoaderStopMethods
public static java.util.Collection<java.lang.reflect.Method> getBeforeClassLoaderStopMethods(java.lang.Class<?> clazz)
Returns theBeforeClassLoaderStop
methods in the given class.- Parameters:
clazz
- the class- Returns:
- the
BeforeClassLoaderStop
methods in the given class. - Since:
- 16.0.0
-
getAfterClassLoaderStartMethods
public static java.util.Collection<java.lang.reflect.Method> getAfterClassLoaderStartMethods(java.lang.Class<?> clazz)
Returns theAfterClassLoaderStarted
methods in the given class.- Parameters:
clazz
- the class- Returns:
- the
AfterClassLoaderStarted
methods in the given class. - Since:
- 16.0.0
-
-