All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.javaoperatorsdk.operator.sample.WebappSpec Maven / Gradle / Ivy

There is a newer version: 5.0.0-beta1
Show newest version
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