
javaVertXServer.MainApiHeader.mustache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-swagger-codegen Show documentation
Show all versions of vertx-swagger-codegen Show documentation
A Swagger codegen plugin for Vert.X. Based on the Swagger Router.
The newest version!
package {{invokerPackage}};
public class MainApiHeader {
private String name;
private String value;
private Iterable values;
protected MainApiHeader(String name, String value) {
super();
this.name = name;
this.value = value;
this.values = null;
}
protected MainApiHeader(String name, Iterable values) {
super();
this.name = name;
this.value = null;
this.values = values;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
public Iterable getValues() {
return values;
}
public static final MainApiHeader CONTENT_TYPE_JSON = new MainApiHeader("Content-Type", "application/json");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy