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

com.jdroid.java.http.urlconnection.patch.UrlConnectionPatchHttpService Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package com.jdroid.java.http.urlconnection.patch;

import com.jdroid.java.http.HttpMethod;
import com.jdroid.java.http.HttpServiceProcessor;
import com.jdroid.java.http.Server;
import com.jdroid.java.http.urlconnection.UrlConnectionBodyEnclosingHttpService;

import java.util.List;

public class UrlConnectionPatchHttpService extends UrlConnectionBodyEnclosingHttpService {

	public UrlConnectionPatchHttpService(Server server, List urlSegments, List httpServiceProcessors) {
		super(server, urlSegments, httpServiceProcessors);
	}

	@Override
	public HttpMethod getHttpMethod() {
		return HttpMethod.PATCH;
	}
}