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

io.quarkus.resteasy.reactive.links.runtime.LinkInfo Maven / Gradle / Ivy

Go to download

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

There is a newer version: 3.18.0.CR1
Show newest version
package io.quarkus.resteasy.reactive.links.runtime;

import java.util.Set;

public final class LinkInfo {

    private final String rel;

    private final String entityType;

    private final String path;

    private final Set pathParameters;

    public LinkInfo(String rel, String entityType, String path, Set pathParameters) {
        this.rel = rel;
        this.entityType = entityType;
        this.path = path;
        this.pathParameters = pathParameters;
    }

    public String getRel() {
        return rel;
    }

    public String getEntityType() {
        return entityType;
    }

    public String getPath() {
        return path;
    }

    public Set getPathParameters() {
        return pathParameters;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy