This commit is contained in:
Ruben Bermudez 2017-06-18 05:38:23 +02:00
parent 0ec6b55216
commit 0a7180fb36
16 changed files with 7 additions and 32 deletions

View File

@ -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)

View File

@ -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();

View File

@ -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);

View File

@ -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 {
}

View File

@ -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();

View File

@ -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;

View File

@ -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() {

View File

@ -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;

View File

@ -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 {

View File

@ -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() {}

View File

@ -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 {

View File

@ -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

View File

@ -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;

View File

@ -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() {

View File

@ -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() {

View File

@ -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 {