Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
HttpComponents Core Source Code Files
HttpComponents Core Source Code Files are provided in the
source package file, httpcomponents-core-5.2-src.zip.
You can download httpcomponents-core-5.2-src.zip as described in the previous tutorial and go to the "httpcore5/src" sub-folder to view Source Code files.
You can also browse HttpComponents Core Source Code below:
✍: FYIcenter.com
⏎ org/apache/hc/core5/http/message/StatusLine.java
/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */ package org.apache.hc.core5.http.message; import java.io.Serializable; import org.apache.hc.core5.annotation.Contract; import org.apache.hc.core5.annotation.ThreadingBehavior; import org.apache.hc.core5.http.HttpResponse; import org.apache.hc.core5.http.HttpVersion; import org.apache.hc.core5.http.ProtocolVersion; import org.apache.hc.core5.util.Args; /** * HTTP/1.1 status line. * * @since 4.0 */ @Contract(threading = ThreadingBehavior.IMMUTABLE) public final class StatusLine implements Serializable { private static final long serialVersionUID = -2443303766890459269L; /** * The protocol version. */ private final ProtocolVersion protoVersion; /** * The status code. */ private final int statusCode; /** * The status code class. */ private final StatusClass statusClass; /** * The reason phrase. */ private final String reasonPhrase; public StatusLine(final HttpResponse response) { super(); Args.notNull(response, "Response"); this.protoVersion = response.getVersion() != null ? response.getVersion() : HttpVersion.HTTP_1_1; this.statusCode = response.getCode(); this.statusClass = StatusClass.from(this.statusCode); this.reasonPhrase = response.getReasonPhrase(); } /** * Creates a new status line with the given version, status, and reason. * * @param version the protocol version of the response * @param statusCode the status code of the response * @param reasonPhrase the reason phrase to the status code, or * {@code null} */ public StatusLine(final ProtocolVersion version, final int statusCode, final String reasonPhrase) { super(); this.statusCode = Args.notNegative(statusCode, "Status code"); this.statusClass = StatusClass.from(this.statusCode); this.protoVersion = version != null ? version : HttpVersion.HTTP_1_1; this.reasonPhrase = reasonPhrase; } public int getStatusCode() { return this.statusCode; } public StatusClass getStatusClass() { return this.statusClass; } /** * Whether this status code is in the HTTP series {@link StatusClass#INFORMATIONAL}. * * @since 5.1 */ public boolean isInformational() { return getStatusClass() == StatusClass.INFORMATIONAL; } /** * Whether this status code is in the HTTP series {@link StatusClass#SUCCESSFUL}. * * @since 5.1 */ public boolean isSuccessful() { return getStatusClass() == StatusClass.SUCCESSFUL; } /** * Whether this status code is in the HTTP series {@link StatusClass#REDIRECTION}. * * @since 5.1 */ public boolean isRedirection() { return getStatusClass() == StatusClass.REDIRECTION; } /** * Whether this status code is in the HTTP series {@link StatusClass#CLIENT_ERROR}. * * @since 5.1 */ public boolean isClientError() { return getStatusClass() == StatusClass.CLIENT_ERROR; } /** * Whether this status code is in the HTTP series {@link StatusClass#SERVER_ERROR}. * * @since 5.1 */ public boolean isServerError() { return getStatusClass() == StatusClass.SERVER_ERROR; } /** * Whether this status code is in the HTTP series {@link StatusClass#CLIENT_ERROR} * or {@link StatusClass#SERVER_ERROR}. * * @since 5.1 */ public boolean isError() { return isClientError() || isServerError(); } public ProtocolVersion getProtocolVersion() { return this.protoVersion; } public String getReasonPhrase() { return this.reasonPhrase; } @Override public String toString() { final StringBuilder buf = new StringBuilder(); buf.append(this.protoVersion).append(" ").append(this.statusCode).append(" "); if (this.reasonPhrase != null) { buf.append(this.reasonPhrase); } return buf.toString(); } /** * Standard classes of HTTP status codes, plus {@code OTHER} for non-standard codes. */ public enum StatusClass { /** * Informational {@code 1xx} HTTP status codes. */ INFORMATIONAL, /** * Successful {@code 2xx} HTTP status codes. */ SUCCESSFUL, /** * Redirection {@code 3xx} HTTP status codes. */ REDIRECTION, /** * Client Error {@code 4xx} HTTP status codes. */ CLIENT_ERROR, /** * {@code 5xx} HTTP status codes. */ SERVER_ERROR, /** * Any other HTTP status codes (e.g. non-standard status codes). */ OTHER; /** * Gets the response status class for the given status code. * * @param statusCode response status code to get the class for. * @return class of the response status code. */ public static StatusClass from(final int statusCode) { final StatusClass statusClass; switch (statusCode / 100) { case 1: statusClass = INFORMATIONAL; break; case 2: statusClass = SUCCESSFUL; break; case 3: statusClass = REDIRECTION; break; case 4: statusClass = CLIENT_ERROR; break; case 5: statusClass = SERVER_ERROR; break; default: statusClass = OTHER; break; } return statusClass; } } }
⏎ org/apache/hc/core5/http/message/StatusLine.java
Or download all them as a single archive file:
File name: httpcore5-5.2-fyi.zip File size: 812477 bytes Release date: 2022-11-10 Download
⇒ Donwload httpcomponents-client-4.5.3-bin.zip
⇐ Download and Install HttpComponents Core Source Package
2023-03-07, ≈50🔥, 0💬
Popular Posts:
JDK 17 java.xml.jmod is the JMOD file for JDK 17 XML (eXtensible Markup Language) module. JDK 17 XML...
maven-embedder-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Embedder module. Apache Maven is a s...
commons-io-2.6-sources.j aris the source JAR file for Apache Commons IO 2.6, which is a library of u...
itextpdf.jar is a component in iText 5 Java library to provide core functionalities. iText Java libr...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....