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

org.openstack4j.core.transport.HttpResponse Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.core.transport;

import java.io.Closeable;
import java.io.InputStream;
import java.util.Map;

/**
 * Wraps a Response from the Jersey Client
 * 
 * @author Jeremy Unruh
 */
public interface HttpResponse extends Closeable {

	/**
	 * Gets the entity and Maps any errors which will result in a ResponseException
	 *
	 * @param  the generic type
	 * @param returnType the return type
	 * @return the entity
	 */
	 T getEntity(Class returnType);

	/**
	 * Gets the entity and Maps any errors which will result in a ResponseException
	 *
	 * @param  the generic type
	 * @param returnType the return type
	 * @param options execution options
	 * @return the entity
	 */
	 T getEntity(Class returnType, ExecutionOptions options);
	
	/**
	 * Reads the entity as is into the specified type without any exception mapping 
	 * 
	 * @param typeToReadAs the type to read the desired entity in as
	 * @return the entity
	 */
	 T readEntity(Class typeToReadAs);

	/**
	 * Gets the status from the previous Request
	 *
	 * @return the status code
	 */
	int getStatus();
	
	/**
	 * The current content-type within the response
	 * 
	 * @return the response content-type
	 */
	String getContentType();
	
	/**
	 * The status message which is associated with the current {@link #getStatus()}
	 * @return the status message or null
	 */
	String getStatusMessage();

	/**
	 * @return the input stream
	 */
	InputStream getInputStream();

	/**
	 * Returns a Header value from the specified name key
	 *
	 * @param name the name of the header to query for
	 * @return the header as a String or null if not found
	 */
	String header(String name);

	/**
	 * @return the a Map of Header Name to Header Value
	 */
	Map headers();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy