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

com.labbol.service.convert.RequestBodyConvertObjects Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
/**
 * 
 */
package com.labbol.service.convert;

import javax.servlet.http.HttpServletRequest;

import com.labbol.core.queryinfo.QueryInfo;
import com.labbol.service.exception.InvalidParameterException;

/**
 * @author PengFei
 * @date 2020年3月6日上午9:01:34
 * @since 1.0
 */
public class RequestBodyConvertObjects {

	private static final RequestBodyConvertObject requestyBodyConvertQueryInfo;
	
	static {
		requestyBodyConvertQueryInfo = new RequestBodyConvertQueryInfo();
	}
	
	public static final QueryInfo toQueryInfo(HttpServletRequest request) throws InvalidParameterException{
		return requestyBodyConvertQueryInfo.convert(request);
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy