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

com.testdroid.api.APIMaintenance Maven / Gradle / Ivy

package com.testdroid.api;

/**
 * @author Michał Szpruta 
 */
public class APIMaintenance extends APIEntity {

    private Boolean enabled;

    public APIMaintenance() {
    }

    public APIMaintenance(Boolean enabled) {
        this.enabled = enabled;
    }

    public Boolean getEnabled() {
        return enabled;
    }

    public void setEnabled(Boolean enabled) {
        this.enabled = enabled;
    }

    @Override
    protected  void clone(T from) {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy