io.javaoperatorsdk.operator.sample.WebappSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sample-tomcat-operator Show documentation
Show all versions of sample-tomcat-operator Show documentation
Provisions Tomcat Pods and deploys Webapplications in them
package io.javaoperatorsdk.operator.sample;
public class WebappSpec {
private String url;
private String contextPath;
private String tomcat;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getContextPath() {
return contextPath;
}
public void setContextPath(String contextPath) {
this.contextPath = contextPath;
}
public String getTomcat() {
return tomcat;
}
public void setTomcat(String tomcat) {
this.tomcat = tomcat;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy