Examples of CollectionStatus


Examples of com.dongxuexidu.douban4j.service.DoubanCollectionService.CollectionStatus

  public void testGetUsersCollection_8args() throws Exception {
    System.out.println("getUsersCollection");
    String userId = "xxx";
    CollectionCategory category = CollectionCategory.Movie;
    String tag = "";
    CollectionStatus status = CollectionStatus.MovieEd;
    Integer startIndex = 0;
    Integer maxResult = 2;
    Date startDate = null;
    Date endDate = null;
    DoubanCollectionService instance = new DoubanCollectionService();
View Full Code Here

Examples of com.dongxuexidu.douban4j.service.DoubanCollectionService.CollectionStatus

  /**
   * Test of createNewCollection method, of class DoubanCollectionService.
   */
  public void testCreateNewCollection() throws Exception {
    System.out.println("createNewCollection");
    CollectionStatus status = CollectionStatus.MovieEd;
    List<String> tags = new ArrayList<String>();
    tags.add("test");
    tags.add("dongxuexidu");
    int rating = 5;
    String content = "Test From Dongxuexidu";
View Full Code Here

Examples of com.dongxuexidu.douban4j.service.DoubanCollectionService.CollectionStatus

   * Test of updateCollection method, of class DoubanCollectionService.
   */
  public void testUpdateCollection() throws Exception {
    System.out.println("updateCollection");
    Long collectionId = 00000000L;
    CollectionStatus status = CollectionStatus.MusicEd;
    List<String> tags = new ArrayList<String>();
    tags.add("test");
    tags.add("dongxuexidu");
    int rating = 5;
    String content = "Test From Dongxuexidu";
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.