Twidere-App-Android-Twitter.../twidere.component.common/src/main/java/org/mariotaku/microblog/library/twitter/api/SavedSearchesResources.java

50 lines
2.0 KiB
Java
Raw Normal View History

2014-07-03 07:48:39 +02:00
/*
* Twidere - Twitter client for Android
2014-07-03 07:48:39 +02:00
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
2014-07-03 07:48:39 +02:00
*
* http://www.apache.org/licenses/LICENSE-2.0
2014-07-03 07:48:39 +02:00
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
2014-07-03 07:48:39 +02:00
*/
2016-05-13 07:08:02 +02:00
package org.mariotaku.microblog.library.twitter.api;
2014-07-03 07:48:39 +02:00
import org.mariotaku.restfu.annotation.method.GET;
import org.mariotaku.restfu.annotation.method.POST;
2016-01-20 04:52:08 +01:00
import org.mariotaku.restfu.annotation.param.Param;
import org.mariotaku.restfu.annotation.param.Path;
import org.mariotaku.restfu.http.BodyType;
2016-05-13 07:08:02 +02:00
import org.mariotaku.microblog.library.MicroBlogException;
import org.mariotaku.microblog.library.twitter.model.ResponseList;
import org.mariotaku.microblog.library.twitter.model.SavedSearch;
2014-07-03 07:48:39 +02:00
2015-05-09 07:20:47 +02:00
@SuppressWarnings("RedundantThrows")
2014-07-03 07:48:39 +02:00
public interface SavedSearchesResources {
2015-05-09 18:59:08 +02:00
@POST("/saved_searches/create.json")
2016-01-20 04:52:08 +01:00
@BodyType(BodyType.FORM)
2016-05-13 07:08:02 +02:00
SavedSearch createSavedSearch(@Param("query") String query) throws MicroBlogException;
2015-05-09 18:59:08 +02:00
@POST("/saved_searches/destroy/{id}.json")
2016-01-20 04:52:08 +01:00
@BodyType(BodyType.FORM)
2016-05-13 07:08:02 +02:00
SavedSearch destroySavedSearch(@Path("id") long id) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-06 21:47:09 +02:00
@GET("/saved_searches/list.json")
2016-05-13 07:08:02 +02:00
ResponseList<SavedSearch> getSavedSearches() throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-09 18:59:08 +02:00
@POST("/saved_searches/show/{id}.json")
2016-05-13 07:08:02 +02:00
SavedSearch showSavedSearch(@Path("id") long id) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
}