com.emc.storageos.model.file.FileShareBulkRep 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_filesystems")
public class FileShareBulkRep extends BulkRestRep {
private List fileShares;
/**
* The list of file shares, returned as response to bulk
* queries.
*
* @valid none
*/
@XmlElement(name = "filesystem")
public List getFileShares() {
if (fileShares == null) {
fileShares = new ArrayList();
}
return fileShares;
}
public void setFileShares(List fileShares) {
this.fileShares = fileShares;
}
public FileShareBulkRep() {
}
public FileShareBulkRep(List fileShares) {
this.fileShares = fileShares;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy