All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.watson.developer_cloud.util.ResponseConverterUtils Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2017 IBM Corp. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.ibm.watson.developer_cloud.util;

import java.io.InputStream;
import java.lang.reflect.Type;

import com.google.gson.JsonObject;
import com.ibm.watson.developer_cloud.http.ResponseConverter;

import okhttp3.Response;

/**
 * Utility class to convert service responses into a {@link ResponseConverter}.
 *
 * @see ResponseConverter
 */
public final class ResponseConverterUtils {

  private ResponseConverterUtils() {
    // This is a utility class - no instantiation allowed.
  }

  /**
   * Creates a generic {@link ResponseConverter} for a generic class.
   *
   * @param  the generic type
   * @param type the type
   * @param property the property
   * @return the object converter
   */
  public static  ResponseConverter getGenericObject(final Type type, final String property) {
    return new ResponseConverter() {
      @Override
      public T convert(Response response) {
        JsonObject json = ResponseUtils.getJsonObject(response);
        return GsonSingleton.getGsonWithoutPrettyPrinting().fromJson(json.get(property), type);
      }
    };
  }

  /**
   * Creates an {@link InputStream} converter.
   *
   * @return the input stream converter
   */
  public static ResponseConverter getInputStream() {
    return new ResponseConverter() {
      @Override
      public InputStream convert(Response response) {
        return ResponseUtils.getInputStream(response);
      }
    };
  }

  /**
   * Creates a generic {@link ResponseConverter} for a POJO class. 
* It should extend {@link ObjectModel} * * @param the generic type * @param type the type * @return the response converter */ public static ResponseConverter getObject(final Class type) { return new ResponseConverter() { @Override public T convert(Response response) { return ResponseUtils.getObject(response, type); } }; } /** * Creates a generic {@link ResponseConverter} for a String response. * * @return the string */ public static ResponseConverter getString() { return new ResponseConverter() { @Override public String convert(Response response) { return ResponseUtils.getString(response); } }; } /** * Creates a generic {@link ResponseConverter} for a non-object response. * * @return the response converter */ public static ResponseConverter getValue(final Class type) { return new ResponseConverter() { @Override public T convert(Response response) { return ResponseUtils.getValue(response, type); } }; } /** * Gets the void converter. * * @return the void converter */ public static ResponseConverter getVoid() { return new ResponseConverter() { @Override public Void convert(Response response) { ResponseUtils.getString(response); // read the response to prevent a connection leak return null; } }; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy