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

com.googlecode.openbox.foo.request.AbstractFooGetRequest Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.googlecode.openbox.foo.request;

import org.apache.http.HttpEntity;

import com.googlecode.openbox.foo.ClientVersion;
import com.googlecode.openbox.http.requests.GetRequest;

public abstract class AbstractFooGetRequest extends AbstractFooRequest {

	public AbstractFooGetRequest(String url, ClientVersion version) {
		super(url, version);
	}

	@Override
	public HttpEntity getEntity() {
		return null;
	}

	@Override
	public String getMethod() {
		return GetRequest.METHOD_NAME;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy