public static T requestGetWithDefaultValue()

in src/main/java/com/vispana/vespa/state/helpers/Request.java [13:20]


  public static <T> T requestGetWithDefaultValue(
      String url, Class<T> responseType, T defaultValue) {
    try {
      return requestGet(url, responseType);
    } catch (Exception exception) {
      return defaultValue;
    }
  }