com.github.firelcw.annotation.Post Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-http Show documentation
Show all versions of easy-http Show documentation
A simple HTTP client for Java
package com.github.firelcw.annotation;
import com.github.firelcw.model.ContentType;
import java.lang.annotation.*;
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Post {
String value() default "";
String contentType() default ContentType.APPLICATION_JSON;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy