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

Definition at line 129 of file JHttpEndpoint.java.

References com.griddynamics.jagger.invoker.v2.JHttpEndpoint.DEF_PROTOCOL.

Referenced by com.griddynamics.jagger.invoker.v2.JHttpEndpoint.copyOf(), com.griddynamics.jagger.invoker.v2.SpringBasedHttpClient.execute(), and com.griddynamics.jagger.invoker.v2.JHttpEndpoint.getURI().

129  {
130  Preconditions.checkNotNull(hostname, "Hostname is null!");
131 
132  if (protocol == null) {
133  protocol = DEF_PROTOCOL;
134  }
135  return newInstance().scheme(protocol.name().toLowerCase()).host(hostname).port(port).build().toUri();
136  }

Here is the caller graph for this function: