com.github.containersolutions.operator.sample.Schema 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 com.github.containersolutions.operator.sample;
import io.fabric8.kubernetes.client.CustomResource;
public class Schema extends CustomResource {
private SchemaSpec spec;
private SchemaStatus status;
public SchemaSpec getSpec() {
return spec;
}
public void setSpec(SchemaSpec spec) {
this.spec = spec;
}
public SchemaStatus getStatus() {
return status;
}
public void setStatus(SchemaStatus status) {
this.status = status;
}
}