br.com.anteros.cloud.integration.filesharing.CloudShareFolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Cloud-Integration Show documentation
Show all versions of Anteros-Cloud-Integration Show documentation
Anteros Cloud Integration for Java.
package br.com.anteros.cloud.integration.filesharing;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class CloudShareFolder {
private String folderName;
private CloudShareFolder(String folderName) {
this.folderName = folderName;
}
public String getFolderName() {
return folderName;
}
public void setFolderName(String folderName) {
this.folderName = folderName;
}
public static Collection list(List listFolderContent) {
Collection result = new ArrayList();
for (String s : listFolderContent) {
result.add(CloudShareFolder.of(s));
}
return result;
}
private static CloudShareFolder of(String folderName) {
return new CloudShareFolder(folderName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy