com.emc.storageos.model.file.FileSystemShareList Maven / Gradle / Ivy
/*
* 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;
import java.util.ArrayList;
import java.util.List;
@XmlRootElement(name = "smb_shares")
public class FileSystemShareList {
private List shareList;
public FileSystemShareList() {
}
public FileSystemShareList(List shareList) {
this.shareList = shareList;
}
/**
* List of file shares for a file system.
*
* @valid none
*/
@XmlElement(name = "smb_share")
public List getShareList() {
if (shareList == null) {
shareList = new ArrayList();
}
return shareList;
}
public void setShareList(List shareList) {
this.shareList = shareList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy