![JAR search and dependency download from the Maven repository](/logo.png)
io.femo.http.events.HttpEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-jdk7 Show documentation
Show all versions of http-jdk7 Show documentation
An easy to use HTTP API, that supports synchronous and asynchronous execution of HTTP request.
On android only asynchronous driver is supported.
This library has been backported to jdk 7 to retain compatibility with android!
The newest version!
package io.femo.http.events;
/**
* Created by felix on 2/11/16.
*/
public abstract class HttpEvent {
private HttpEventType httpEventType;
public HttpEvent(HttpEventType httpEventType) {
this.httpEventType = httpEventType;
}
public HttpEventType eventType() {
return httpEventType;
}
public void eventType(HttpEventType httpEventType) {
this.httpEventType = httpEventType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy