Examples of BookmarkDoc


Examples of com.gnizr.core.search.BookmarkDoc

    assertEquals(searchDescriptionUrl,osm.getLink().getHref());
  }
 
  public void testCreateFromBookmarkDoc() throws Exception {
    List<BookmarkDoc> docs = new ArrayList<BookmarkDoc>();
    BookmarkDoc doc1 = new BookmarkDoc();
    doc1.setTitle("bookmark 1 title");
    doc1.setNotes("<p>some html description</p>");
    doc1.setBookmarkId(123);
    doc1.setUrl("http://foo.com/doc?id=102&p=334");
    doc1.setUsername("johna");
    doc1.setUrlHash("383774jd9383232");
    docs.add(doc1);
   
    String feedUrl = "http://foo.com/feed?id=1&p=3";
    Date pubDate = GregorianCalendar.getInstance().getTime();
    String title = "a feed of bookmark docs";
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.