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

org.jboss.resteasy.links.AddLinks Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha3
Show newest version
package org.jboss.resteasy.links;

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

import jakarta.xml.bind.Marshaller;

import org.jboss.resteasy.annotations.Decorator;
import org.jboss.resteasy.annotations.Decorators;
import org.jboss.resteasy.links.impl.JsonLinkDecorator;
import org.jboss.resteasy.links.impl.LinkDecorator;
import org.jboss.resteasy.plugins.providers.jackson.DecoratedEntityContainer;

/**
 * Use on any JAX-RS method if you want RESTEasy to inject the RESTServiceDiscovery
 * to every entity in the response. This will only inject RESTServiceDiscovery instances
 * on entities that have a field of this type, but it will be done recursively on the response's
 * entity.
 *
 * @author Stéphane Épardaud
 */
@Target({ ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER,
        ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
@Decorators(values = {
        @Decorator(processor = LinkDecorator.class, target = Marshaller.class),
        @Decorator(processor = JsonLinkDecorator.class, target = DecoratedEntityContainer.class)
})
@Documented
public @interface AddLinks {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy