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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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