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

com.turbomanage.httpclient.rest.ObjectResponse Maven / Gradle / Ivy

package com.turbomanage.httpclient.rest;

import com.turbomanage.httpclient.HttpResponse;

public abstract class ObjectResponse {

	protected HttpResponse httpResponse;
	protected ObjectFactory objFactory;
	
	public ObjectResponse(HttpResponse res, ObjectFactory factory) {
		this.httpResponse = res;
		this.objFactory = factory;
	}
	
	public  T toObj(Class responseType) {
		return (T) objFactory.toObj(httpResponse.getBody(), responseType);
	}

	public HttpResponse getHttpResponse() {
		return httpResponse;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy