com.emc.storageos.model.file.FileSnapshotBulkRep Maven / Gradle / Ivy
/*
* Copyright (c) 2015 EMC Corporation
* All Rights Reserved
*/
package com.emc.storageos.model.file;
import com.emc.storageos.model.BulkRestRep;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;
@XmlRootElement(name = "bulk_file_snapshots")
public class FileSnapshotBulkRep extends BulkRestRep {
private List fileSnapshots;
/**
* The list of file snapshots, returned as response to bulk
* queries.
*
* @valid none
*/
@XmlElement(name = "file_snapshot")
public List getFileSnapshots() {
if (fileSnapshots == null) {
fileSnapshots = new ArrayList();
}
return fileSnapshots;
}
public void setFileSnapshots(List fileSnapshots) {
this.fileSnapshots = fileSnapshots;
}
public FileSnapshotBulkRep() {
}
public FileSnapshotBulkRep(List fileSnapshots) {
this.fileSnapshots = fileSnapshots;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy