ClassLoader cl = getVerifierContext().getClassLoader();
for (LifecycleCallbackDescriptor callbackDesc : callbackDescs) {
try {
Method method = callbackDesc.getLifecycleCallbackMethodObject(cl);
if(Modifier.isFinal(method.getModifiers()) ||
Modifier.isStatic(method.getModifiers())) {
logFailure(callbackMethodName, method);
}
} catch (Exception e) {}//ignore as it will be caught in other tests
}