Package del.icio.us.beans

Examples of del.icio.us.beans.Post


    Delicious dConn = new Delicious(dUsername, dPassword);
    logger.debug("created an access object to del.icio.us");
    List posts = dConn.getAllPosts();
    if (posts != null && posts.size() > 0) {
      for(Iterator it = posts.iterator(); it.hasNext();) {
        Post aPost = (Post) it.next();
        Bookmark bmark = createBookmark(aPost);
        int bmid = bmarkManager.getBookmarkId(gUser,bmark.getLink().getUrl());
        if(bmid <= 0){
          try {
            bmid = bmarkManager.addBookmark(bmark);
View Full Code Here

TOP

Related Classes of del.icio.us.beans.Post

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.