net.gplatform.spring.social.weibo.api.Weibo Maven / Gradle / Ivy
package net.gplatform.spring.social.weibo.api;
/*
* #%L
* spring-social-weibo
* %%
* Copyright (C) 2013 - 2014 Shark Xu
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* .
* #L%
*/
import org.springframework.social.ApiBinding;
import weibo4j.Account;
import weibo4j.Comments;
import weibo4j.Favorite;
import weibo4j.Friendships;
import weibo4j.Place;
import weibo4j.PublicService;
import weibo4j.Reminds;
import weibo4j.Search;
import weibo4j.ShortUrl;
import weibo4j.Suggestion;
import weibo4j.Tags;
import weibo4j.Timeline;
import weibo4j.Trend;
import weibo4j.Users;
public interface Weibo extends ApiBinding {
Account accountOperations();
Comments commentsOperations();
Favorite favoriteOperations();
Friendships friendshipsOperations();
Place placeOperations();
PublicService publicServiceOperations();
Reminds remindsOperations();
Search searchOperations();
ShortUrl shortUrlOperations();
Suggestion suggestionOperations();
Tags tagsOperations();
Timeline timelineOperations();
Trend trendOperations();
Users usersOperations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy