io.quarkus.hal.HalLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-hal Show documentation
Show all versions of quarkus-hal Show documentation
Hypertext Application Language (HAL) support
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