super(registry);
}
@Override
public void visitMethod(Method method, JavaImplementation type) throws IntrospectionException {
Init annotation = method.getAnnotation(Init.class);
if (annotation == null) {
return;
}
if (method.getParameterTypes().length != 0) {
throw new IllegalInitException("[JCA90008] Initializer must not have argments", method);