Example usage for com.squareup.okhttp Response newBuilder

List of usage examples for com.squareup.okhttp Response newBuilder

Introduction

In this page you can find the example usage for com.squareup.okhttp Response newBuilder.

Prototype

public Builder newBuilder() 

Source Link

Usage

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getGenotypeObjectCall(String id, Boolean fetchObjects, Integer rows,
        Boolean excludeAutomaticAssertions, Boolean unselectEvidence, Boolean useCompactAssociations,
        final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException("Missing the required parameter 'id' when calling getGenotypeObject(Async)");
    }/*from w w  w.  java2s  . c o m*/

    // create path and map variables
    String localVarPath = "/bioentity/genotype/{id}".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getGenotypePhenotypeAssociationsCall(String id, Boolean fetchObjects,
        Integer rows, Boolean excludeAutomaticAssertions, Boolean unselectEvidence,
        Boolean useCompactAssociations, final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getGenotypePhenotypeAssociations(Async)");
    }//from   w  ww . j av a2  s . c o m

    // create path and map variables
    String localVarPath = "/bioentity/genotype/{id}/phenotypes/".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getGotermGeneAssociationsCall(String id, Boolean fetchObjects, Integer rows,
        Boolean excludeAutomaticAssertions, Boolean unselectEvidence, Boolean useCompactAssociations,
        final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getGotermGeneAssociations(Async)");
    }/*from   w  w w . j a va2 s .c  o m*/

    // create path and map variables
    String localVarPath = "/bioentity/goterm/{id}/genes/".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getGotermObjectCall(String id, Boolean fetchObjects, Integer rows,
        Boolean excludeAutomaticAssertions, Boolean unselectEvidence, Boolean useCompactAssociations,
        final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException("Missing the required parameter 'id' when calling getGotermObject(Async)");
    }//www  . ja  v  a2  s  .co  m

    // create path and map variables
    String localVarPath = "/bioentity/goterm/{id}".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getGotermPhenotypeAssociationsCall(String id, Boolean fetchObjects,
        Integer rows, Boolean excludeAutomaticAssertions, Boolean unselectEvidence,
        Boolean useCompactAssociations, final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getGotermPhenotypeAssociations(Async)");
    }// w w  w.j  a v  a 2s .c  o m

    // create path and map variables
    String localVarPath = "/bioentity/goterm/{id}/phenotype/".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getLiteratureDiseaseAssociationsCall(String id, Boolean fetchObjects,
        Integer rows, Boolean excludeAutomaticAssertions, Boolean unselectEvidence,
        Boolean useCompactAssociations, final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getLiteratureDiseaseAssociations(Async)");
    }// w w  w . ja v a  2s  .  c o m

    // create path and map variables
    String localVarPath = "/bioentity/literature/{id}/diseases/".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getLiteratureGeneAssociationsCall(String id, Boolean fetchObjects,
        Integer rows, Boolean excludeAutomaticAssertions, Boolean unselectEvidence,
        Boolean useCompactAssociations, final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getLiteratureGeneAssociations(Async)");
    }/*w  w w  .ja  va  2s.c o m*/

    // create path and map variables
    String localVarPath = "/bioentity/literature/{id}/genes/".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getLiteratureGenotypeAssociationsCall(String id, Boolean fetchObjects,
        Integer rows, Boolean excludeAutomaticAssertions, Boolean unselectEvidence,
        Boolean useCompactAssociations, final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getLiteratureGenotypeAssociations(Async)");
    }/*from   w w  w.jav  a2  s.  com*/

    // create path and map variables
    String localVarPath = "/bioentity/literature/{id}/genotypes/".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getParentObjectCall(String id, Boolean fetchObjects, Integer rows,
        Boolean excludeAutomaticAssertions, Boolean unselectEvidence, Boolean useCompactAssociations,
        final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException("Missing the required parameter 'id' when calling getParentObject(Async)");
    }//from   w  w  w  . j  a va  2s  .c o  m

    // create path and map variables
    String localVarPath = "/bioentity/individual/{id}".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}

From source file:io.swagger.client.api.BioentityApi.java

License:Apache License

private com.squareup.okhttp.Call getParentObject_0Call(String id, Boolean fetchObjects, Integer rows,
        Boolean excludeAutomaticAssertions, Boolean unselectEvidence, Boolean useCompactAssociations,
        final ProgressResponseBody.ProgressListener progressListener,
        final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
    Object localVarPostBody = null;

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException("Missing the required parameter 'id' when calling getParentObject_0(Async)");
    }// w ww  .j  a  v a 2 s .c o m

    // create path and map variables
    String localVarPath = "/bioentity/investigation/{id}".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "id" + "\\}", apiClient.escapeString(id.toString()));

    List<Pair> localVarQueryParams = new ArrayList<Pair>();
    if (fetchObjects != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "fetch_objects", fetchObjects));
    if (rows != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "rows", rows));
    if (excludeAutomaticAssertions != null)
        localVarQueryParams.addAll(
                apiClient.parameterToPairs("", "exclude_automatic_assertions", excludeAutomaticAssertions));
    if (unselectEvidence != null)
        localVarQueryParams.addAll(apiClient.parameterToPairs("", "unselect_evidence", unselectEvidence));
    if (useCompactAssociations != null)
        localVarQueryParams
                .addAll(apiClient.parameterToPairs("", "use_compact_associations", useCompactAssociations));

    Map<String, String> localVarHeaderParams = new HashMap<String, String>();

    Map<String, Object> localVarFormParams = new HashMap<String, Object>();

    final String[] localVarAccepts = { "application/json" };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
    if (localVarAccept != null)
        localVarHeaderParams.put("Accept", localVarAccept);

    final String[] localVarContentTypes = { "application/json" };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
    localVarHeaderParams.put("Content-Type", localVarContentType);

    if (progressListener != null) {
        apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                    throws IOException {
                com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                return originalResponse.newBuilder()
                        .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
            }
        });
    }

    String[] localVarAuthNames = new String[] {};
    return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
            localVarFormParams, localVarAuthNames, progressRequestListener);
}