![JAR search and dependency download from the Maven repository](/logo.png)
com.centurylink.mdw.util.HttpRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mdw-common Show documentation
Show all versions of mdw-common Show documentation
MDW is a microservices based workflow framework
package com.centurylink.mdw.util;
/**
* Models an HttpRequest.
*/
public class HttpRequest {
private HttpConnection connection;
public HttpConnection getConnection() { return connection; }
public HttpRequest(HttpConnection httpConnection) {
this.connection = httpConnection;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy