blob: 4b64eec85523741ebfb7400a95a9c1e7bfc1525e [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.sthbnd.http;
import org.eclipse.sensinact.gateway.common.bundle.Mediator;
import org.eclipse.sensinact.gateway.protocol.http.client.AbstractRequest;
import org.eclipse.sensinact.gateway.protocol.http.client.Request;
import java.io.IOException;
import java.net.HttpURLConnection;
/**
*
*/
public class SimpleHttpRequest extends AbstractRequest<SimpleHttpResponse> {
protected Mediator mediator;
/**
* @param mediator
* @param configuration
*/
public SimpleHttpRequest(Mediator mediator, HttpConnectionConfiguration<SimpleHttpResponse, ? extends AbstractRequest<SimpleHttpResponse>> configuration) {
super(configuration);
this.mediator = mediator;
}
@Override
public SimpleHttpResponse createResponse(HttpURLConnection connection) throws IOException {
if (connection == null) {
return null;
}
SimpleHttpResponse response = new SimpleHttpResponse(mediator, connection, (HttpConnectionConfiguration<? extends HttpResponse, ? extends Request<? extends HttpResponse>>) super.configuration);
return response;
}
}