本文整理汇总了Java中org.apache.http.ReasonPhraseCatalog类的典型用法代码示例。如果您正苦于以下问题:Java ReasonPhraseCatalog类的具体用法?Java ReasonPhraseCatalog怎么用?Java ReasonPhraseCatalog使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ReasonPhraseCatalog类属于org.apache.http包,在下文中一共展示了ReasonPhraseCatalog类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: BasicHttpResponse
import org.apache.http.ReasonPhraseCatalog; //导入依赖的package包/类
/**
* Creates a new response.
* This is the constructor to which all others map.
*
* @param statusline the status line
* @param catalog the reason phrase catalog, or
* <code>null</code> to disable automatic
* reason phrase lookup
* @param locale the locale for looking up reason phrases, or
* <code>null</code> for the system locale
*/
public BasicHttpResponse(final StatusLine statusline,
final ReasonPhraseCatalog catalog,
final Locale locale) {
super();
if (statusline == null) {
throw new IllegalArgumentException("Status line may not be null.");
}
this.statusline = statusline;
this.reasonCatalog = catalog;
this.locale = (locale != null) ? locale : Locale.getDefault();
}
示例2: DefaultHttpResponseFactory
import org.apache.http.ReasonPhraseCatalog; //导入依赖的package包/类
/**
* Creates a new response factory with the given catalog.
*
* @param catalog the catalog of reason phrases
*/
public DefaultHttpResponseFactory(ReasonPhraseCatalog catalog) {
if (catalog == null) {
throw new IllegalArgumentException
("Reason phrase catalog must not be null.");
}
this.reasonCatalog = catalog;
}
示例3: CustomResponse
import org.apache.http.ReasonPhraseCatalog; //导入依赖的package包/类
public CustomResponse(StatusLine statusline, ReasonPhraseCatalog catalog, Locale locale) {
super(statusline, catalog, locale);
}
示例4: RecordedHttpResponse
import org.apache.http.ReasonPhraseCatalog; //导入依赖的package包/类
public RecordedHttpResponse(StatusLine statusline,
ReasonPhraseCatalog catalog, Locale locale,
MessageMetadata messdata) {
super(statusline, catalog, locale);
this.messdata = messdata;
}
示例5: RecordedHttpResponseFactory
import org.apache.http.ReasonPhraseCatalog; //导入依赖的package包/类
public RecordedHttpResponseFactory(ReasonPhraseCatalog catalog,
MessageMetadata messdata) {
super(catalog);
this.messdata = messdata;
}
示例6: DefaultHttpResponseFactoryHC4
import org.apache.http.ReasonPhraseCatalog; //导入依赖的package包/类
/**
* Creates a new response factory with the given catalog.
*
* @param catalog the catalog of reason phrases
*/
public DefaultHttpResponseFactoryHC4(final ReasonPhraseCatalog catalog) {
this.reasonCatalog = Args.notNull(catalog, "Reason phrase catalog");
}