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

io.quarkus.resteasy.reactive.links.RestLinkId Maven / Gradle / Ivy

Go to download

Web Links support for Quarkus REST. Inject web links into response HTTP headers by annotating your endpoint resources.

The newest version!
package io.quarkus.resteasy.reactive.links;

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

/**
 * Mark a field on a resource to be a provider for 'id' parameters in associated Web links.
 * 

* The RestLinkId annotation can be used at field level. *

*/ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD }) public @interface RestLinkId { }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy