Package com.dongxuexidu.douban4j.service.DoubanEventService

Examples of com.dongxuexidu.douban4j.service.DoubanEventService.EventType


   * Test of postNewEvent method, of class DoubanEventService.
   */
  public void testPostNewEvent() throws Exception {
    System.out.println("postNewEvent");
    String title = "Test from Dongxuexidu";
    EventType type = EventType.Salon;
    String content = "Test from Dongxuexidu";
    boolean inviteOnly = true;
    boolean canInvite = false;
    Date startTime = new Date();
    Calendar cal = Calendar.getInstance();
View Full Code Here


   */
  public void testUpdateEvent() throws Exception {
    System.out.println("updateEvent");
    long eventId = 16564220L;
    String title = "Test from Dongxuexidu";
    EventType type = EventType.Music;
    String content = "Test from Dongxuexidu";
    boolean inviteOnly = false;
    boolean canInvite = false;
    Date startTime = null;
    Date endTime = null;
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.service.DoubanEventService.EventType

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.