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

org.kuali.common.http.HttpRequestResult Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package org.kuali.common.http;

import java.io.IOException;

public class HttpRequestResult {

	Integer statusCode;
	String statusText;
	IOException exception;
	long start;
	long stop;
	long elapsed;

	public Integer getStatusCode() {
		return statusCode;
	}

	public void setStatusCode(Integer statusCode) {
		this.statusCode = statusCode;
	}

	public String getStatusText() {
		return statusText;
	}

	public void setStatusText(String statusText) {
		this.statusText = statusText;
	}

	public IOException getException() {
		return exception;
	}

	public void setException(IOException exception) {
		this.exception = exception;
	}

	public long getStart() {
		return start;
	}

	public void setStart(long start) {
		this.start = start;
	}

	public long getStop() {
		return stop;
	}

	public void setStop(long stop) {
		this.stop = stop;
	}

	public long getElapsed() {
		return elapsed;
	}

	public void setElapsed(long elapsed) {
		this.elapsed = elapsed;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy