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.

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

import java.util.Set;

public final class LinkInfo {

    private final String rel;

    private final String title;

    private final String type;

    private final String entityType;

    private final String path;

    private final Set pathParameters;

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

    public String getRel() {
        return rel;
    }

    public String getTitle() {
        return title;
    }

    public String getType() {
        return type;
    }

    public String getEntityType() {
        return entityType;
    }

    public String getPath() {
        return path;
    }

    public Set getPathParameters() {
        return pathParameters;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy