Package org.b3log.solo.sync.cnblogs

Examples of org.b3log.solo.sync.cnblogs.CnBlogsBlog


     */
    public static MetaWeblog getMetaWeblog(final String externalSysName) {
        if (BlogSync.BLOG_SYNC_CSDN_BLOG.equals(externalSysName)) {
            return new CSDNBlog();
        } else if (BlogSync.BLOG_SYNC_CNBLOGS.equals(externalSysName)) {
            return new CnBlogsBlog();
        } else if (BlogSync.BLOG_SYNC_BLOGJAVA.equals(externalSysName)) {
            return new BlogJavaBlog();
        } else {
            throw new IllegalArgumentException("Not supported external blogging system["
                                       + externalSysName + "]");
View Full Code Here

TOP

Related Classes of org.b3log.solo.sync.cnblogs.CnBlogsBlog

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.