IRequestBuilder Interface

public interface IRequestBuilder

Builder for a request

Method Summary

Modifier and Type Method and Description
abstract IBaseClient<?> getClient()

Gets the client for this request builder

abstract java.lang.String getRequestUrl()

Gets the request URL

abstract java.lang.String getRequestUrlWithAdditionalSegment(String urlSegment)

Gets the request URL with an additional segment

Method Details

getClient

public abstract IBaseClient getClient()

Gets the client for this request builder

Returns:

the client for this request builder

getRequestUrl

public abstract String getRequestUrl()

Gets the request URL

Returns:

the request URL

getRequestUrlWithAdditionalSegment

public abstract String getRequestUrlWithAdditionalSegment(String urlSegment)

Gets the request URL with an additional segment

Parameters:

urlSegment - the segment to add to the URL

Returns:

the new request URL

Applies to