Package io.fathom.cloud.storage.api.os.resources

Examples of io.fathom.cloud.storage.api.os.resources.DirectoryListEntry


            throw new IllegalStateException();
        }

        List<DirectoryListEntry> entries = Lists.newArrayList();
        for (FileData file : dir.getFilesList()) {
            entries.add(new DirectoryListEntry(file.getKey(), file));
        }

        return entries;
    }
View Full Code Here


            }

            if (changed) {
                List<DirectoryListEntry> l = Lists.newArrayList();
                for (String dir : dirs) {
                    l.add(new DirectoryListEntry(dir, null));
                }

                l.addAll(realFiles);
                entries = l;
            }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.storage.api.os.resources.DirectoryListEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.