![JAR search and dependency download from the Maven repository](/logo.png)
JavaClientCli.ApiClientOptions.mustache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen Show documentation
Show all versions of codegen Show documentation
This artefact generates other artefacts such as API client, API server out of API Model
{{>licenseInfo}}
package {{invokerPackage}}.support;
public class ApiClientOptions {
private String serverUrl;
private String proxy;
private boolean validationEnabled = false;
private String userAgent;
private boolean debugEnabled = false;
private boolean verifyingSsl = true;
private String accessToken;
public String getServerUrl() {
return serverUrl;
}
public void setServerUrl(String serverUrl) {
this.serverUrl = serverUrl;
}
public String getProxy() {
return proxy;
}
public void setProxy(String proxy) {
this.proxy = proxy;
}
public boolean isValidationEnabled() {
return validationEnabled;
}
public void setValidationEnabled(boolean validationEnabled) {
this.validationEnabled = validationEnabled;
}
public String getUserAgent() {
return userAgent;
}
public void setUserAgent(String userAgent) {
this.userAgent = userAgent;
}
public boolean isDebugEnabled() {
return debugEnabled;
}
public void setDebugEnabled(boolean debugEnabled) {
this.debugEnabled = debugEnabled;
}
public boolean isVerifyingSsl() {
return verifyingSsl;
}
public void setVerifyingSsl(boolean verifyingSsl) {
this.verifyingSsl = verifyingSsl;
}
public void setAccessToken(String jwt) {
this.accessToken = jwt;
}
public String getAccessToken() {
return accessToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy