All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mercadopago.core.annotations.rest.POST Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.mercadopago.core.annotations.rest;

import java.lang.annotation.*;

/**
 * Mercado Pago SDK
 * Rest Information annotation interface for POST
 * connection and socket timeouts are expressed in milliseconds
 *
 * Created by Eduardo Paoletta on 11/4/16.
 */
@Inherited
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface POST {
    String path();
    PayloadType payloadType() default PayloadType.JSON;

    int retries() default 0;
    int connectionTimeout() default 0;
    int socketTimeout() default 0;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy