Fix TODO
This commit is contained in:
parent
0ec6b55216
commit
0a7180fb36
@ -11,8 +11,7 @@ import java.io.Serializable;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 06 of November of 2016
|
||||
* Response from Telegram Server
|
||||
*/
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
|
@ -3,8 +3,7 @@ package org.telegram.telegrambots.generics;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
* Bot options
|
||||
*/
|
||||
public interface BotOptions {
|
||||
String getBaseUrl();
|
||||
|
@ -3,8 +3,7 @@ package org.telegram.telegrambots.generics;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
* Bot session interface
|
||||
*/
|
||||
public interface BotSession {
|
||||
void setOptions(BotOptions options);
|
||||
|
@ -3,8 +3,7 @@ package org.telegram.telegrambots.generics;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
* Base Updates Handler interface
|
||||
*/
|
||||
public interface UpdatesHandler {
|
||||
}
|
||||
|
@ -3,8 +3,7 @@ package org.telegram.telegrambots.generics;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
* Updates reader interface
|
||||
*/
|
||||
public interface UpdatesReader {
|
||||
void start();
|
||||
|
@ -5,8 +5,7 @@ import org.telegram.telegrambots.exceptions.TelegramApiRequestException;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
* Webhook interface
|
||||
*/
|
||||
public interface Webhook {
|
||||
void startServer() throws TelegramApiRequestException;
|
||||
|
@ -3,8 +3,6 @@ package org.telegram.telegrambots.test;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 04 of November of 2016
|
||||
*/
|
||||
public final class TelegramBotsHelper {
|
||||
private TelegramBotsHelper() {
|
||||
|
@ -27,8 +27,6 @@ import java.util.List;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 04 of November of 2016
|
||||
*/
|
||||
public class TestDeserialization {
|
||||
private ObjectMapper mapper;
|
||||
|
@ -9,8 +9,6 @@ import org.telegram.telegrambots.exceptions.TelegramApiRequestException;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
*/
|
||||
public class TestTelegramApi extends TestBase {
|
||||
|
||||
|
@ -3,8 +3,6 @@ package org.telegram.telegrambots.test.asserts;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 04 of November of 2016
|
||||
*/
|
||||
public final class ApiAssert {
|
||||
private ApiAssert() {}
|
||||
|
@ -10,8 +10,6 @@ import org.telegram.telegrambots.generics.Webhook;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
*/
|
||||
public abstract class TestBase {
|
||||
|
||||
|
@ -7,8 +7,6 @@ import org.telegram.telegrambots.generics.LongPollingBot;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
*/
|
||||
public class FakeBotSession implements BotSession {
|
||||
@Override
|
||||
|
@ -7,8 +7,6 @@ import org.telegram.telegrambots.generics.WebhookBot;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
*/
|
||||
public class FakeWebhook implements Webhook {
|
||||
private String internalUrl;
|
||||
|
@ -8,8 +8,7 @@ import org.telegram.telegrambots.updatesreceivers.DefaultWebhook;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 29 of October of 2016
|
||||
* Initialization of ApiContext
|
||||
*/
|
||||
public final class ApiContextInitializer {
|
||||
private ApiContextInitializer() {
|
||||
|
@ -43,8 +43,6 @@ import java.util.List;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 02 of November of 2016
|
||||
*/
|
||||
public final class BotApiMethodHelperFactory {
|
||||
private BotApiMethodHelperFactory() {
|
||||
|
@ -31,8 +31,6 @@ import static org.junit.Assert.fail;
|
||||
/**
|
||||
* @author Ruben Bermudez
|
||||
* @version 1.0
|
||||
* @brief TODO
|
||||
* @date 01 of November of 2016
|
||||
*/
|
||||
public class TestRestApi extends JerseyTest {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user