All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.web.api.service.generator.WebApiProxyGenLoader Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR2
Show newest version
package io.vertx.ext.web.api.service.generator;

import io.vertx.codegen.Generator;
import io.vertx.codegen.GeneratorLoader;
import io.vertx.serviceproxy.generator.GeneratorUtils;

import javax.annotation.processing.ProcessingEnvironment;
import java.util.stream.Stream;

/**
 * @author Francesco Guardiani @slinkydeveloper
 */
public class WebApiProxyGenLoader implements GeneratorLoader {

  @Override
  public Stream> loadGenerators(ProcessingEnvironment processingEnv) {
    GeneratorUtils utils = new GeneratorUtils();
    return Stream.of(new WebApiProxyHandlerGen(utils));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy