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

com.gocardless.http.PathParam Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package com.gocardless.http;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks a field as a parameter used to construct the path for a request.
 *
 * Fields marked with this annotation will not be serialized as JSON when making HTTP requests.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface PathParam {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy