use of io.vertx.codegen.annotations.GenIgnore in project vertx-web by vert-x3.
the class OpenAPILoaderOptions method toSchemaRouterOptions.
@GenIgnore
public SchemaRouterOptions toSchemaRouterOptions() {
SchemaRouterOptions opt = new SchemaRouterOptions();
authHeaders.forEach(opt::putAuthHeader);
authQueryParams.forEach(opt::putAuthQueryParam);
return opt;
}
Aggregations