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

com.jd.httpservice.agent.ServiceRequest Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.agent;

import java.net.URI;
import java.nio.ByteBuffer;

import com.jd.httpservice.HttpMethod;
import com.jd.httpservice.NamedParamMap;

public interface ServiceRequest {

	HttpMethod getHttpMethod();

	URI getUri();

	ByteBuffer getBody();

	NamedParamMap getRequestParams();

	/**
	 * 返回服务方法的参数值列表;
	 * 
	 * @return
	 */
	Object[] getArgs();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy