Package org.apache.abdera.protocol.server.impl

Examples of org.apache.abdera.protocol.server.impl.SimpleCollectionInfo


                String title = feed.getTitle();
                // default title to id if null
                if (title == null) {
                    title = id;
                }
                info = new SimpleCollectionInfo(title, id, "text/plain",
                        "text/html", "text/xml", "image/png", "image/jpeg",
                        "image/gif", "image/svg+xml", "video/mp4");
                result.add(info);
            } catch (ParseException e) {
                log.warn("Could not parse collection info for feed: " + id
View Full Code Here

TOP

Related Classes of org.apache.abdera.protocol.server.impl.SimpleCollectionInfo

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.