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

com.genexus.ws.rs.core.UriInfo Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.3
Show 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