com.genexus.ws.rs.core.UriInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxwrapperjakarta Show documentation
Show all versions of gxwrapperjakarta Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
The newest version!
package com.genexus.ws.rs.core;
import java.net.URI;
public class UriInfo implements IUriInfo{
private jakarta.ws.rs.core.UriInfo ui;
public UriInfo(jakarta.ws.rs.core.UriInfo ui) {
this.ui = ui;
}
public URI getAbsolutePath() {
return ui.getAbsolutePath();
}
public URI getRequestUri() {
return ui.getRequestUri();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy