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

com.emc.storageos.model.file.FileSystemSnapshotParam Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2015 EMC Corporation
 * All Rights Reserved
 */
package com.emc.storageos.model.file;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Attributes associated with a file system snapshot,
 * provided by the user during snapshot creation.
 * 
 */
@XmlRootElement(name = "filesystem_snapshot_create")
public class FileSystemSnapshotParam {

    private String label;

    public FileSystemSnapshotParam() {
    }

    public FileSystemSnapshotParam(String label) {
        this.label = label;
    }

    /**
     * User provided name/label for the snapshot.
     * 
     * @valid none
     */
    @XmlElement(required = true, name = "name")
    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy