Package org.apache.abdera.protocol.server

Examples of org.apache.abdera.protocol.server.CollectionInfo


    public Collection<CollectionInfo> getCollections(RequestContext request) {
        LinkedList<CollectionInfo> result = new LinkedList<CollectionInfo>();
        Feed feed;
        Parser parser = Abdera.getInstance().getParser();
        CollectionInfo info;
        Storage storage = getStorage();
        for (String id : getFeedIds(request)) {
            try {
                feed = (Feed) parser.parse(
                        new StringReader(storage.readFeed(id))).getRoot();
View Full Code Here

TOP

Related Classes of org.apache.abdera.protocol.server.CollectionInfo

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.