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