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 getPathwayGeneAssociationsCall(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 getPathwayGeneAssociations(Async)");
    }//from  ww  w  .j ava2s . c om

    // create path and map variables
    String localVarPath = "/bioentity/pathway/{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 getPathwayObjectCall(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 getPathwayObject(Async)");
    }//from   www  . j a va  2  s . c  o m

    // create path and map variables
    String localVarPath = "/bioentity/pathway/{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 getPathwayParticipantAssociationsCall(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 getPathwayParticipantAssociations(Async)");
    }/*from w w w. ja v  a2s.  c  o  m*/

    // create path and map variables
    String localVarPath = "/bioentity/pathway/{id}/participants/".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 getPhenotypeAnatomyAssociationsCall(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 getPhenotypeAnatomyAssociations(Async)");
    }//from www .  ja va2s.c om

    // create path and map variables
    String localVarPath = "/bioentity/phenotype/{id}/anatomy/".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 getPhenotypeFunctionAssociationsCall(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 getPhenotypeFunctionAssociations(Async)");
    }//  w  w w .  ja va 2  s  .c om

    // create path and map variables
    String localVarPath = "/bioentity/phenotype/{id}/function/".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 getPhenotypeGeneAssociationsCall(String taxid, 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 'taxid' is set
    if (taxid == null) {
        throw new ApiException(
                "Missing the required parameter 'taxid' when calling getPhenotypeGeneAssociations(Async)");
    }/*from   w  w  w . jav  a 2 s. c  om*/

    // verify the required parameter 'id' is set
    if (id == null) {
        throw new ApiException(
                "Missing the required parameter 'id' when calling getPhenotypeGeneAssociations(Async)");
    }

    // create path and map variables
    String localVarPath = "/bioentity/phenotype/{id}/gene/{taxid}/ids".replaceAll("\\{format\\}", "json")
            .replaceAll("\\{" + "taxid" + "\\}", apiClient.escapeString(taxid.toString()))
            .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 getPhenotypeGeneAssociations_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 getPhenotypeGeneAssociations_0(Async)");
    }//from w  w w.  j a  v  a 2  s.  com

    // create path and map variables
    String localVarPath = "/bioentity/phenotype/{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 getPhenotypeObjectCall(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 getPhenotypeObject(Async)");
    }//ww w .  j av a 2 s  .c o m

    // create path and map variables
    String localVarPath = "/bioentity/phenotype/{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 getPhenotypePhenotypeAssociationsCall(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 getPhenotypePhenotypeAssociations(Async)");
    }//  w  w w.jav  a2 s  . c  o m

    // create path and map variables
    String localVarPath = "/bioentity/phenotype/{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 getPubObjectCall(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 getPubObject(Async)");
    }//w  w  w.  j av a 2 s  . c  o m

    // create path and map variables
    String localVarPath = "/bioentity/literature/{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);
}