Example usage for org.apache.commons.httpclient URI getEscapedFragment

List of usage examples for org.apache.commons.httpclient URI getEscapedFragment

Introduction

In this page you can find the example usage for org.apache.commons.httpclient URI getEscapedFragment.

Prototype

public String getEscapedFragment() 

Source Link

Document

Get the escaped fragment.

Usage

From source file:com.eviware.soapui.impl.support.HttpUtils.java

public static java.net.URI createUri(URI uri) throws URISyntaxException, URIException {
    return createUri(uri.getScheme(), uri.getUserinfo(), uri.getHost(), uri.getPort(), uri.getEscapedPath(),
            uri.getEscapedQuery(), uri.getEscapedFragment());
}