io.github.itroadlabs.apicross.springmvc.SpringMvcCodeGeneratorOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicross-springmvc Show documentation
Show all versions of apicross-springmvc Show documentation
Spring Web MVC code generator
The newest version!
package io.github.itroadlabs.apicross.springmvc;
import io.github.itroadlabs.apicross.java.JavaCodeGeneratorOptions;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import java.util.List;
@Getter
@Setter
@ToString(callSuper = true)
public class SpringMvcCodeGeneratorOptions extends JavaCodeGeneratorOptions {
private boolean enableApicrossJavaBeanValidationSupport = false;
private boolean enableDataModelReadInterfaces = false;
private boolean enableSpringSecurityAuthPrincipal = false;
private boolean useQueryStringParametersObject = true;
private String apiModelReadInterfacesPackage;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy