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

com.clarifai.api.ClarifaiRequest Maven / Gradle / Ivy

The newest version!
package com.clarifai.api;

import java.io.IOException;
import java.io.OutputStream;

/** Base class for requests to the Clarifai API. */
public abstract class ClarifaiRequest {
  /** Returns the content type of the payload */
  abstract String getContentType();

  /** Writes the payload to the given stream. */
  abstract void writeContent(OutputStream out) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy