io.quarkus.resteasy.reactive.links.runtime.GetterAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-rest-links Show documentation
Show all versions of quarkus-rest-links Show documentation
Web Links support for Quarkus REST. Inject web links into response HTTP headers by annotating your endpoint resources.
package io.quarkus.resteasy.reactive.links.runtime;
/**
* An accessor that knows how to access a specific getter method of a specific type.
*/
public interface GetterAccessor {
/**
* Access a getter on a given instance and return a response.
*/
Object get(Object instance);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy