io.javaoperatorsdk.operator.sample.SchemaStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mysql-schema-sample Show documentation
Show all versions of mysql-schema-sample Show documentation
Provisions new Schemas in a MySQL database
package io.javaoperatorsdk.operator.sample;
public class SchemaStatus {
private String url;
private String status;
private String userName;
private String secretName;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getSecretName() {
return secretName;
}
public void setSecretName(String secretName) {
this.secretName = secretName;
}
}