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

com.github.containersolutions.operator.sample.Schema Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy