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

com.softlayer.api.service.network.storage.Replicant Maven / Gradle / Ivy

The newest version!
package com.softlayer.api.service.network.storage;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.network.Storage;

/**
 * @see SoftLayer_Network_Storage_Replicant
 */
@ApiType("SoftLayer_Network_Storage_Replicant")
public class Replicant extends Storage {

    /**
     * When a replicant is in the process of synchronizing with the parent volume this flag will be true.
     */
    @ApiProperty
    protected String failbackInProgressFlag;

    public String getFailbackInProgressFlag() {
        return failbackInProgressFlag;
    }

    public void setFailbackInProgressFlag(String failbackInProgressFlag) {
        this.failbackInProgressFlag = failbackInProgressFlag;
    }

    /**
     * The volume name for a replicant.
     */
    @ApiProperty
    protected String volumeName;

    public String getVolumeName() {
        return volumeName;
    }

    public void setVolumeName(String volumeName) {
        this.volumeName = volumeName;
    }

    public static class Mask extends com.softlayer.api.service.network.Storage.Mask {

        public Mask failbackInProgressFlag() {
            withLocalProperty("failbackInProgressFlag");
            return this;
        }

        public Mask volumeName() {
            withLocalProperty("volumeName");
            return this;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy