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

io.quarkus.hal.HalLink Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.hal;

public class HalLink {

    private final String href;

    public HalLink(String href) {
        this.href = href;
    }

    public String getHref() {
        return href;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy