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

com.gitee.apanlh.web.content.RequestContentStrategy Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
package com.gitee.apanlh.web.content;

import com.gitee.apanlh.web.http.HttpContentType;

/**	
 * 	Request-Content请求头
 * 
 * 	@author Pan
 */
public interface RequestContentStrategy {
	
	/**	
	 * 	获取枚举类型
	 * 
	 * 	@author Pan
	 * 	@return	HttpContentType
	 */
	HttpContentType getContent();
	
	/**	
	 * 	获取默认类型字符串
	 * 	
	 * 	@author Pan
	 * 	@return	String
	 */
	String getContentStr();
	
	/**	
	 * 	获取类型字符串
	 * 	
根据类型验证值类型 *
例如TEXT类型分别有HTMl、XML、TEXT、JavaScript等 * * @author Pan * @param contentType 内容类型 * @return String */ String getContentStr(String contentType); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy