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

org.openstack4j.openstack.manila.domain.actions.ResetStateAction Maven / Gradle / Ivy

package org.openstack4j.openstack.manila.domain.actions;

import com.fasterxml.jackson.annotation.JsonRootName;
import org.openstack4j.model.manila.Share;

/**
 * Reset the state of a share.
 *
 * @author Daniel Gonzalez Nothnagel
 */
@JsonRootName("os-reset_status")
public class ResetStateAction implements ShareAction {
    private static final long serialVersionUID = 1L;

    private Share.Status status;

    ResetStateAction(Share.Status status) {
        this.status = status;
    }

    public Share.Status getStatus() {
        return status;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy