Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
URI com.griddynamics.jagger.invoker.v2.JHttpEndpoint.getURI ( String  path)
Parameters
pathpath to be added to URI
Returns
URI based on JHttpEndpoint#protocol, JHttpEndpoint#hostname and JHttpEndpoint#port fields values with path added.

Definition at line 143 of file JHttpEndpoint.java.

References com.griddynamics.jagger.invoker.v2.JHttpEndpoint.getURI().

143  {
144  URI oldUri = getURI();
145  if (StringUtils.isEmpty(path)) {
146  return oldUri;
147  }
148 
149  return fromUri(oldUri).path(path).build().toUri();
150  }

Here is the call graph for this function: