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

com.factual.driver.RowResponse Maven / Gradle / Ivy

The newest version!
package com.factual.driver;

import java.util.Map;

/**
 * Represents the response from running a fetch row request against Factual.
 *
 * @author brandon
 */
public class RowResponse extends ReadResponse {

  /**
   * Constructor, parses from a JSON response String.
   */
  public RowResponse(InternalResponse resp) {
    super(resp);
  }

  public boolean isDeprecated() {
    return resp.getStatusCode() == 301;
  }

  public Map getRowData() {
    return first();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy