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

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

The 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
 */
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