Examples of DoubanEventFeedObj


Examples of com.dongxuexidu.douban4j.model.event.DoubanEventFeedObj

    }
    if (maxResult != null) {
      params.add(new BasicNameValuePair("max-results", "" + maxResult));
    }
    String url = RequestUrls.DOUBAN_USER_PREFIX + "/" + userId + "/events";
    DoubanEventFeedObj events = this.client.getResponse(url, params, DoubanEventFeedObj.class, false);
    return events;
  }
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.event.DoubanEventFeedObj

    }
    if (maxResult != null) {
      params.add(new BasicNameValuePair("max-results", "" + maxResult));
    }
    String url = RequestUrls.DOUBAN_USER_PREFIX + "/" + userId + "/events/initiate";
    DoubanEventFeedObj events = this.client.getResponse(url, params, DoubanEventFeedObj.class, false);
    return events;
  }
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.event.DoubanEventFeedObj

    }
    if (maxResult != null) {
      params.add(new BasicNameValuePair("max-results", "" + maxResult));
    }
    String url = RequestUrls.DOUBAN_USER_PREFIX + "/" + userId + "/events/participate";
    DoubanEventFeedObj events = this.client.getResponse(url, params, DoubanEventFeedObj.class, false);
    return events;
  }
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.event.DoubanEventFeedObj

    }
    if (maxResult != null) {
      params.add(new BasicNameValuePair("max-results", "" + maxResult));
    }
    String url = RequestUrls.DOUBAN_USER_PREFIX + "/" + userId + "/events/wish";
    DoubanEventFeedObj events = this.client.getResponse(url, params, DoubanEventFeedObj.class, false);
    return events;
  }
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.event.DoubanEventFeedObj

    }
    if (type != null) {
      params.add(new BasicNameValuePair("type", type.getValue()));
    }
    String url = RequestUrls.DOUBAN_EVENT_PREFIX + "/location/" + locationId;
    DoubanEventFeedObj events = this.client.getResponse(url, params, DoubanEventFeedObj.class, false);
    return events;
  }
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.event.DoubanEventFeedObj

    if (locationId != null && locationId.length() > 0) {
      params.add(new BasicNameValuePair("location", locationId));
    } else {
      params.add(new BasicNameValuePair("location", "all"));
    }
    DoubanEventFeedObj result = this.client.getResponse(RequestUrls.DOUBAN_EVENT_PREFIX + "s", params, DoubanEventFeedObj.class, false);
    return result;
  }
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.