Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- AbstractHeaderFields<C extends Cookie,
T extends HeaderFields<C, T>> - Class in org.refcodes.web -
Abstract implementation of the
HeaderFields
type. - AbstractHeaderFields() - Constructor for class org.refcodes.web.AbstractHeaderFields
-
Instantiates a new abstract Header-Fields.
- AbstractHeaderFields(Map<String, List<String>>) - Constructor for class org.refcodes.web.AbstractHeaderFields
-
Instantiates a new abstract Header-Fields.
- AbstractHttpFields<T extends HttpFields<T>> - Class in org.refcodes.web
-
Abstract implementation of the
HeaderFields
type. - AbstractHttpFields() - Constructor for class org.refcodes.web.AbstractHttpFields
-
Instantiates an empty instance.
- AbstractHttpFields(Map<String, List<String>>) - Constructor for class org.refcodes.web.AbstractHttpFields
-
Initializes the instance with the fields provided by the given
Map
. - AbstractHttpRequest - Class in org.refcodes.web
-
Implementation of the
HttpRequest
interface. - AbstractHttpRequest(HttpMethod, Url) - Constructor for class org.refcodes.web.AbstractHttpRequest
-
Constructs a
HttpRequest
with all required attributes. - AbstractHttpRequest(HttpMethod, Url, RequestHeaderFields) - Constructor for class org.refcodes.web.AbstractHttpRequest
-
Constructs a
HttpRequest
with all required attributes. - AbstractHttpResponse - Class in org.refcodes.web
-
Implementation of the
HttpResponse
interface. - AbstractHttpResponse() - Constructor for class org.refcodes.web.AbstractHttpResponse
-
Constructs a
HttpResponse
withHttpStatusCode.OK
. - AbstractHttpResponse(HttpStatusCode) - Constructor for class org.refcodes.web.AbstractHttpResponse
-
Constructs a
HttpResponse
with all required attributes. - AbstractHttpResponse(HttpStatusCode, ResponseHeaderFields) - Constructor for class org.refcodes.web.AbstractHttpResponse
-
Constructs a
HttpResponse
with all required attributes. - AbstractHttpResponse(ResponseHeaderFields) - Constructor for class org.refcodes.web.AbstractHttpResponse
-
Constructs a
HttpResponse
with withHttpStatusCode.OK
. - ACCEPT - Enum constant in enum class org.refcodes.web.HeaderField
- ACCEPT_CHARSET - Enum constant in enum class org.refcodes.web.HeaderField
- ACCEPT_ENCODING - Enum constant in enum class org.refcodes.web.HeaderField
- ACCEPT_LANGUAGE - Enum constant in enum class org.refcodes.web.HeaderField
-
"...
- ACCEPTED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
202 Accepted (HTTP/1.0 - RFC 1945)
- ACCEPTED - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
202 Accepted (HTTP/1.0 - RFC 1945)
- ACCESS_TOKEN - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- ACCESS_TOKEN - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- addAll(HttpFields<?>) - Method in interface org.refcodes.web.HttpFields
-
Adds all fields found in the provided
HttpFields
instance. - addCookie(C) - Method in class org.refcodes.web.AbstractHeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addCookie(C) - Method in interface org.refcodes.web.HeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addCookie(String) - Method in interface org.refcodes.web.HeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addCookie(String) - Method in class org.refcodes.web.RequestHeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addCookie(String) - Method in class org.refcodes.web.ResponseHeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addCookie(String, String) - Method in class org.refcodes.web.AbstractHeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addCookie(String, String) - Method in interface org.refcodes.web.HeaderFields
-
Adds an individual server-side cookie to be sent to the client to this
ResponseHeaderFields
instance. - addHttpInterceptor(I) - Method in interface org.refcodes.web.HttpInterceptable
-
Adds the given
HttpInterceptor
instance. - addHttpInterceptor(HttpClientInterceptor) - Method in interface org.refcodes.web.HttpClientInterceptable
-
Adds the given
HttpClientInterceptor
instance. - addHttpInterceptor(HttpServerInterceptor) - Method in interface org.refcodes.web.HttpServerInterceptable
-
Adds the given
HttpServerInterceptor
instance. - addMediaTypeFactory(MediaTypeFactory) - Method in interface org.refcodes.web.MediaTypeFactoryLookup.MutableMediaTypeFactoryLookup
-
Registers a
MediaTypeFactory
for marshaling and unmarshaling a HTTP-Request's body of the accordingMediaType
. - addPostHttpInterceptor(I) - Method in interface org.refcodes.web.PostHttpInterceptable
-
Adds the given
PostHttpInterceptor
instance. - addPreHttpInterceptor(I) - Method in interface org.refcodes.web.PreHttpInterceptable
-
Adds the given
PreHttpInterceptor
instance. - addTo(Enum<?>, String) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.addTo(String, String)
though using the provided enumeration'sEnum.toString()
method to determine the key. - addTo(Enum<?>, String...) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.addTo(String, String...)
though using the provided enumeration'sEnum.toString()
method to determine the key. - addTo(Enum<?>, List<String>) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.addTo(String, List)
though using the provided enumeration'sEnum.toString()
method to determine the key. - addTo(String, String) - Method in class org.refcodes.web.AbstractHeaderFields
-
Adds a value to the list of values associated with the given Header-Field (key).
- addTo(String, String) - Method in interface org.refcodes.web.HttpFields
-
Adds a value to the list of values associated with the given Header-Field (key).
- addTo(String, String...) - Method in interface org.refcodes.web.HttpFields
-
Adds values to the list of values associated with the given Header-Field (key).
- addTo(String, List<String>) - Method in interface org.refcodes.web.HttpFields
-
Adds values to the list of values associated with the given Header-Field (key),.
- addTo(HeaderField, String) - Method in interface org.refcodes.web.HeaderFields
-
Adds the value to the given Header-Field.
- addTo(HeaderField, String...) - Method in interface org.refcodes.web.HeaderFields
-
Adds the given values to the according Header-Field.
- addTo(HeaderField, List<String>) - Method in interface org.refcodes.web.HeaderFields
-
Adds the given values to the according Header-Field.
- addToQueryFields(String, String) - Method in class org.refcodes.web.UrlBuilder
-
Adds a value to the list of values associated with the given Query-Field (key).
- addToQueryFields(String, String...) - Method in class org.refcodes.web.UrlBuilder
-
Adds values to the list of values associated with the given Query-Field (key).
- ALLOW - Enum constant in enum class org.refcodes.web.HeaderField
- appendToPath(String) - Method in class org.refcodes.web.UrlBuilder
-
Appends a path element to the path.
- appendToPath(String...) - Method in class org.refcodes.web.UrlBuilder
-
Appends multiple path elements to the path, automatically adding the path separator "/" as required.
- APPLICATION - Enum constant in enum class org.refcodes.web.TopLevelType
- APPLICATION_1D_INTERLEAVED_PARITYFEC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_3GPDASH_QOE_REPORT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_3GPP_IMS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_A2L - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ACTIVEMESSAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_COSTMAP_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_COSTMAPFILTER_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_DIRECTORY_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_ENDPOINTCOST_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_ENDPOINTCOSTPARAMS_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_ENDPOINTPROP_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_ENDPOINTPROPPARAMS_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_ERROR_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_NETWORKMAP_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ALTO_NETWORKMAPFILTER_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_AML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ANDREW_INSET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_APPLEFILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATFX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATOM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATOMCAT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATOMDELETED_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATOMICMAIL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATOMSVC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ATXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_AUTH_POLICY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_BACNET_XDD_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_BATCH_SMTP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_BEEP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CALENDAR_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CALENDAR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CALL_COMPLETION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CALS_1840 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CBOR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CCMP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CCXML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDFX_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDMI_CAPABILITY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDMI_CONTAINER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDMI_DOMAIN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDMI_OBJECT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDMI_QUEUE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CDNI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CEA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CEA_2018_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CELLML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CFW - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CLUE_INFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CMS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CNRP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_COAP_GROUP_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_COMMONGROUND - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CONFERENCE_INFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CPL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CSRATTRS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CSTA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CSTADATA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CSVM_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_CYBERCASH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DASH_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DASHDELTA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DAVMOUNT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DCA_RFT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DCD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DEC_DX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DIALOG_INFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DICOM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DII - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DIT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DNS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DSKPP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DSSC_DER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DSSC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_DVCS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ECMASCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EDI_CONSENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EDI_X12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EDIFACT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EFI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EMERGENCYCALLDATA_COMMENT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EMERGENCYCALLDATA_DEVICEINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EMERGENCYCALLDATA_PROVIDERINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EMERGENCYCALLDATA_SERVICEINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EMERGENCYCALLDATA_SUBSCRIBERINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EMOTIONML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ENCAPRTP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EPP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EPUB_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ESHOP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FASTINFOSET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FASTSOAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FDT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FITS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FONT_SFNT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FONT_TDPFR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FONT_WOFF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_FRAMEWORK_ATTRIBUTES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_GEO_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_GZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_H224 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_HAL_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_HAL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_HELD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_HTTP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_HYPERSTUDIO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IBE_KEY_REQUEST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IBE_PKG_REPLY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IBE_PP_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IGES - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IM_ISCOMPOSING_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_INDEX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_INDEX_CMD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_INDEX_OBJ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_INDEX_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_INDEX_VND - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_INKML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IOTP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IPFIX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_IPP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ISUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ITS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JAVASCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JOSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JOSE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JRD_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JSON_PATCH_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JSON_SEQ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JWK_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JWK_SET_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_JWT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_KPML_REQUEST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_KPML_RESPONSE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LD_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LGR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LINK_FORMAT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LOAD_CONTROL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LOST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LOSTSYNC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_LXF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MAC_BINHEX40 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MACWRITEII - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MADS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MARC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MARCXML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MATHEMATICA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_ASSOCIATED_PROCEDURE_DESCRIPTION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_DEREGISTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_ENVELOPE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_MSK_RESPONSE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_MSK_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_PROTECTION_DESCRIPTION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_RECEPTION_REPORT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_REGISTER_RESPONSE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_REGISTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_SCHEDULE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBMS_USER_SERVICE_DESCRIPTION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MBOX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MEDIA_CONTROL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MEDIA_POLICY_DATASET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MEDIASERVERCONTROL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MERGE_PATCH_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_METALINK4_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_METS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MF4 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MIKEY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MODS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MOSS_KEYS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MOSS_SIGNATURE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MOSSKEY_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MOSSKEY_REQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MP21 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MP4 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MPEG4_GENERIC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MPEG4_IOD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MPEG4_IOD_XMT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MRB_CONSUMER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MRB_PUBLISH_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MSC_IVR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MSC_MIXER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MSWORD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_MXF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_NASDATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_NEWS_CHECKGROUPS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_NEWS_GROUPINFO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_NEWS_TRANSMISSION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_NLSML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_NSS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_OCSP_REQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_OCSP_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_OCTET_STREAM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ODA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ODX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_OEBPS_PACKAGE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_OGG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_OXPS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_P2P_OVERLAY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PATCH_OPS_ERROR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PDF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PDX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PGP_ENCRYPTED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PGP_SIGNATURE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PIDF_DIFF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PIDF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKCS10 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKCS12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKCS7_MIME - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKCS7_SIGNATURE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKCS8 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKIX_ATTR_CERT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKIX_CERT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKIX_CRL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKIX_PKIPATH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PKIXCMP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PLS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_POC_SETTINGS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_POSTSCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PPSP_TRACKER_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PROBLEM_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PROBLEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PROVENANCE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_ALVESTRAND_TITRAX_SHEET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_CWW - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_HPUB_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_NPREND - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_PLUCKER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_RDF_XML_CRYPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PRS_XSF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_PSKC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_QSIG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RAPTORFEC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RDAP_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RDF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_REGINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RELAX_NG_COMPACT_SYNTAX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_REMOTE_PRINTING - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_REPUTON_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RESOURCE_LISTS_DIFF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RESOURCE_LISTS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RFC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RISCOS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RLMI_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RLS_SERVICES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RPKI_GHOSTBUSTERS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RPKI_MANIFEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RPKI_ROA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RPKI_UPDOWN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RTF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RTPLOOPBACK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_RTX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SAMLASSERTION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SAMLMETADATA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SBML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCAIP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCHEMA_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCHEMA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCIM_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCVP_CV_REQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCVP_CV_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCVP_VP_REQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SCVP_VP_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SDP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SEP_EXI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SEP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SESSION_INFO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SET_PAYMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SET_PAYMENT_INITIATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SET_REGISTRATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SET_REGISTRATION_INITIATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SGML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SGML_OPEN_CATALOG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SHF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SIEVE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SIMPLE_FILTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SIMPLE_MESSAGE_SUMMARY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SIMPLESYMBOLCONTAINER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SMIL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SMIL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SMPTE336M - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SOAP_FASTINFOSET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SOAP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SPIRITS_EVENT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SQL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SRGS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SRGS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SRU_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_SSML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_APEX_UPDATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_APEX_UPDATE_CONFIRM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_COMMUNITY_UPDATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_COMMUNITY_UPDATE_CONFIRM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_ERROR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_SEQUENCE_ADJUST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_SEQUENCE_ADJUST_CONFIRM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_STATUS_QUERY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_STATUS_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_UPDATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TAMP_UPDATE_CONFIRM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TEI_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_THRAUD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TIMESTAMP_QUERY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TIMESTAMP_REPLY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TIMESTAMPED_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TTML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_TVE_TRIGGER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ULPFEC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_URC_GRPSHEET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_URC_RESSHEET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_URC_TARGETDESC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_URC_UISOCKETDESC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VCARD_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VCARD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VEMMI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_ACCESS_TRANSFER_EVENTS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_BSF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_MID_CALL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_PIC_BW_LARGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_PIC_BW_SMALL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_PIC_BW_VAR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_PROSE_PC3CH_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_PROSE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_SMS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_SMS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_SRVCC_EXT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_SRVCC_INFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_STATE_AND_EVENT_INFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP_USSD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP2_BCMCSINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP2_SMS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3GPP2_TCAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3LIGHTSSOFTWARE_IMAGESCAL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_3M_POST_IT_NOTES - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ACCPAC_SIMPLY_ASO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ACCPAC_SIMPLY_IMP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ACUCOBOL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ACUCORP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ADOBE_FLASH_MOVIE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ADOBE_FORMSCENTRAL_FCDT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ADOBE_FXP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ADOBE_PARTIAL_UPLOAD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ADOBE_XDP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ADOBE_XFDF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AETHER_IMP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AH_BARCODE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AHEAD_SPACE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AIRZIP_FILESECURE_AZF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AIRZIP_FILESECURE_AZS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AMAZON_MOBI8_EBOOK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AMERICANDYNAMICS_ACC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AMIGA_AMI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AMUNDSEN_MAZE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ANKI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ANSER_WEB_CERTIFICATE_ISSUE_INITIATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ANTIX_GAME_COMPONENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_APACHE_THRIFT_BINARY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_APACHE_THRIFT_COMPACT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_APACHE_THRIFT_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_API_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_APPLE_INSTALLER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_APPLE_MPEGURL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ARASTRA_SWI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ARISTANETWORKS_SWI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ARTSQUARE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ASTRAEA_SOFTWARE_IOTA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AUDIOGRAPH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AUTOPACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_AVISTAR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BALSAMIQ_BMML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BALSAMIQ_BMPR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BEKITZUR_STECH_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BIOPAX_RDF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BLUEICE_MULTIPASS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BLUETOOTH_EP_OOB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BLUETOOTH_LE_OOB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BMI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_BUSINESSOBJECTS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CAB_JSCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CANON_CPDL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CANON_LIPS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CENDIO_THINLINC_CLIENTCONF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CENTURY_SYSTEMS_TCP_STREAM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CHEMDRAW_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CHESS_PGN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CHIPNUTS_KARAOKE_MMD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CINDERELLA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CIRPACK_ISDN_EXT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CITATIONSTYLES_STYLE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CLAYMORE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CLOANTO_RP9 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CLONK_C4GROUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CLUETRUST_CARTOMOBILE_CONFIG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CLUETRUST_CARTOMOBILE_CONFIG_PKG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COFFEESCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COLLECTION_DOC_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COLLECTION_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COLLECTION_NEXT_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COMICBOOK_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COMMERCE_BATTELLE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COMMONSPACE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CONTACT_CMSG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COREOS_IGNITION_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_COSMOCALLER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CRICK_CLICKER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CRICK_CLICKER_KEYBOARD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CRICK_CLICKER_PALETTE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CRICK_CLICKER_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CRICK_CLICKER_WORDBANK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CRITICALTOOLS_WBS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CTC_POSML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CTCT_WS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CUPS_PDF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CUPS_POSTSCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CUPS_PPD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CUPS_RASTER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CUPS_RAW - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CURL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CYAN_DEAN_ROOT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_CYBANK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_D2L_COURSEPACKAGE1P0_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DART - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DATA_VISION_RDZ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DEBIAN_BINARY_PACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DECE_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DECE_TTML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DECE_UNSPECIFIED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DECE_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DENOVO_FCSELAYOUT_LINK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DESMUME_MOVIE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DIR_BI_PLATE_DL_NOSUFFIX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DM_DELEGATION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DNA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DOCUMENT_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DOLBY_MOBILE_1 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DOLBY_MOBILE_2 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DOREMIR_SCORECLOUD_BINARY_DOCUMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DPGRAPH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DREAMFACTORY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DRIVE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DTG_LOCAL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DTG_LOCAL_FLASH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DTG_LOCAL_HTML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_AIT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_DVBJ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_ESGCONTAINER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPDCDFTNOTIFACCESS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPDCESGACCESS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPDCESGACCESS2 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPDCESGPDD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPDCROAMING - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPTV_ALFEC_BASE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_IPTV_ALFEC_ENHANCEMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_AGGREGATE_ROOT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_CONTAINER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_GENERIC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_IA_MSGLIST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_IA_REGISTRATION_REQUEST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_IA_REGISTRATION_RESPONSE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_NOTIF_INIT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_PFR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DVB_SERVICE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DXR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DYNAGEO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_DZR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EASYKARAOKE_CDGDOWNLOAD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECDIS_UPDATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECOWIN_CHART - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECOWIN_FILEREQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECOWIN_FILEUPDATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECOWIN_SERIES - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECOWIN_SERIESREQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ECOWIN_SERIESUPDATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EMCLIENT_ACCESSREQUEST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ENLIVEN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ENPHASE_ENVOY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EPRINTS_DATA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EPSON_ESF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EPSON_MSF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EPSON_QUICKANIME - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EPSON_SALT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EPSON_SSF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ERICSSON_QUICKCALL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ESPASS_ESPASS_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ESZIGNO3_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_AOC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_ASIC_E_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_ASIC_S_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_CUG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVCOMMAND_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVDISCOVERY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVPROFILE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVSAD_BC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVSAD_COD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVSAD_NPVR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVSERVICE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVSYNC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_IPTVUEPROFILE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_MCID_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_MHEG5 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_OVERLOAD_CONTROL_POLICY_DATASET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_PSTN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_SCI_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_SIMSERVS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_TIMESTAMP_TOKEN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_TSL_DER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ETSI_TSL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EUDORA_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EZPIX_ALBUM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_EZPIX_PACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_F_SECURE_MOBILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FASTCOPY_DISK_IMAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FDF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FDSN_MSEED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FDSN_SEED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FFSNS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FILMIT_ZFC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FINTS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FIREMONKEYS_CLOUDCELL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FLOGRAPHIT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FLUXTIME_CLIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FONT_FONTFORGE_SFD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FRAMEMAKER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FROGANS_FNC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FROGANS_LTF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FSC_WEBLAUNCH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJITSU_OASYS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJITSU_OASYS2 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJITSU_OASYS3 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJITSU_OASYSGP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJITSU_OASYSPRS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_ART_EX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_ART4 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_DDD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_DOCUWORKS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_DOCUWORKS_BINDER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_DOCUWORKS_CONTAINER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUJIXEROX_HBPL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUT_MISNET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_FUZZYSHEET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GENOMATIX_TUXEDO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEO_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEOCUBE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEOGEBRA_FILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEOGEBRA_TOOL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEOMETRY_EXPLORER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEONEXT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEOPLAN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GEOSPACE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GERBER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GLOBALPLATFORM_CARD_CONTENT_MGT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GLOBALPLATFORM_CARD_CONTENT_MGT_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GMX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GOOGLE_EARTH_KML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GOOGLE_EARTH_KMZ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GOV_SK_E_FORM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GOV_SK_E_FORM_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GOV_SK_XMLDATACONTAINER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GRAFEQ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GRIDMP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_ACCOUNT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_HELP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_IDENTITY_MESSAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_INJECTOR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_TOOL_MESSAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_TOOL_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_GROOVE_VCARD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HAL_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HAL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HANDHELD_ENTERTAINMENT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HBCI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HCL_BIREPORTS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HDT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HEROKU_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HHE_LESSON_PLAYER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HP_HPGL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HP_HPID - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HP_HPS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HP_JLYT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HP_PCL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HP_PCLXL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HTTPHONE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HYDROSTATIX_SOF_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HYPERDRIVE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_HZN_3D_CROSSWORD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IBM_AFPLINEDATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IBM_ELECTRONIC_MEDIA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IBM_MINIPAY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IBM_MODCAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IBM_RIGHTS_MANAGEMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IBM_SECURE_CONTAINER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ICCPROFILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IEEE_1905 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IGLOADER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMMERVISION_IVP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMMERVISION_IVU - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_IMSCCV1P1 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_IMSCCV1P2 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_IMSCCV1P3 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_LIS_V2_RESULT_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_LTI_V2_TOOLCONSUMERPROFILE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_LTI_V2_TOOLPROXY_ID_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_LTI_V2_TOOLPROXY_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_LTI_V2_TOOLSETTINGS_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IMS_LTI_V2_TOOLSETTINGS_SIMPLE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INFORMEDCONTROL_RMS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INFORMIX_VISIONARY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INFOTECH_PROJECT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INFOTECH_PROJECT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INNOPATH_WAMP_NOTIFICATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INSORS_IGM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INTERCON_FORMNET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INTERGEO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INTERTRUST_DIGIBOX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INTERTRUST_NNCP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INTU_QBO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_INTU_QFX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_CATALOGITEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_CONCEPTITEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_KNOWLEDGEITEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_NEWSITEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_NEWSMESSAGE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_PACKAGEITEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPTC_G2_PLANNINGITEM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IPUNPLUGGED_RCPROFILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IREPOSITORY_PACKAGE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_IS_XPR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ISAC_FCS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_DIRECTORY_SERVICE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_JPNSTORE_WAKEUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_PAYMENT_WAKEUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_REGISTRATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_REGISTRATION_WAKEUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_SETSTORE_WAKEUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_VERIFICATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JAPANNET_VERIFICATION_WAKEUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JCP_JAVAME_MIDLET_RMS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JISP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JOOST_JODA_ARCHIVE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_JSK_ISDN_NGN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KAHOOTZ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KARBON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KCHART - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KFORMULA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KIVIO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KONTOUR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KPRESENTER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KSPREAD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KDE_KWORD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KENAMEAAPP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KIDSPIRATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KINAR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KOAN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_KODAK_DESCRIPTOR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LAS_LAS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LIBERTY_REQUEST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LLAMAGRAPHICS_LIFE_BALANCE_DESKTOP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LLAMAGRAPHICS_LIFE_BALANCE_EXCHANGE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_1_2_3 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_APPROACH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_FREELANCE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_NOTES - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_ORGANIZER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_SCREENCAM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_LOTUS_WORDPRO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MACPORTS_PORTPKG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MAPBOX_VECTOR_TILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MARLIN_DRM_ACTIONTOKEN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MARLIN_DRM_CONFTOKEN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MARLIN_DRM_LICENSE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MARLIN_DRM_MDCF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MASON_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MAXMIND_MAXMIND_DB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MCD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MEDCALCDATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MEDIASTATION_CDKEY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MERIDIAN_SLINGSHOT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MFER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MFMP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MICRO_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MICROGRAFX_FLO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MICROGRAFX_IGX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MICROSOFT_PORTABLE_EXECUTABLE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MIELE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MIF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MINISOFT_HP3000_SAVE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MITSUBISHI_MISTY_GUARD_TRUSTWEB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_DAF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_DIS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_MBK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_MQY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_MSL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_PLC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOBIUS_TXF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOPHUN_APPLICATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOPHUN_CERTIFICATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE_ADSI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE_FIS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE_GOTAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE_KMR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE_TTC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_FLEXSUITE_WEM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOTOROLA_IPRM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MOZILLA_XUL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_3MFDOCUMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_ARTGALRY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_ASF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_CAB_COMPRESSED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_EXCEL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_EXCEL_ADDIN_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_EXCEL_SHEET_BINARY_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_EXCEL_SHEET_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_EXCEL_TEMPLATE_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_FONTOBJECT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_HTMLHELP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_IMS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_LRM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_OFFICE_ACTIVEX_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_OFFICETHEME - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_PLAYREADY_INITIATOR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_POWERPOINT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_POWERPOINT_ADDIN_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_POWERPOINT_PRESENTATION_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_POWERPOINT_SLIDE_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_POWERPOINT_SLIDESHOW_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_POWERPOINT_TEMPLATE_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_PRINTDEVICECAPABILITIES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_PRINTSCHEMATICKET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_PROJECT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_TNEF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WINDOWS_DEVICEPAIRING - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WINDOWS_NWPRINTING_OOB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WINDOWS_PRINTERPAIRING - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WINDOWS_WSD_OOB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WMDRM_LIC_CHLG_REQ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WMDRM_LIC_RESP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WMDRM_METER_CHLG_REQ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WMDRM_METER_RESP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WORD_DOCUMENT_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WORD_TEMPLATE_MACROENABLED_12 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WORKS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_WPL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MS_XPSDOCUMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MSA_DISK_IMAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MSEQ - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MSIGN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MULTIAD_CREATOR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MULTIAD_CREATOR_CIF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MUSIC_NIFF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MUSICIAN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MUVEE_STYLE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_MYNFC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NCD_CONTROL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NCD_REFERENCE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NEARST_INV_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NERVANA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NETFPX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NEUROLANGUAGE_NLU - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NINTENDO_NITRO_ROM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NINTENDO_SNES_ROM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NITF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOBLENET_DIRECTORY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOBLENET_SEALER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOBLENET_WEB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_CATALOGS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_CONML_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_CONML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_IPTV_CONFIG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_ISDS_RADIO_PRESETS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_LANDMARK_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_LANDMARK_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_LANDMARKCOLLECTION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_N_GAGE_AC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_N_GAGE_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_N_GAGE_SYMBIAN_INSTALL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_NCD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_PCD_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_PCD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_RADIO_PRESET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOKIA_RADIO_PRESETS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOVADIGM_EDM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOVADIGM_EDX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NOVADIGM_EXT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NTT_LOCAL_CONTENT_SHARE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NTT_LOCAL_FILE_TRANSFER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NTT_LOCAL_OGW_REMOTE_ACCESS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NTT_LOCAL_SIP_TA_REMOTE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_NTT_LOCAL_SIP_TA_TCP_STREAM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_CHART - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_CHART_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_DATABASE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_FORMULA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_FORMULA_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_GRAPHICS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_GRAPHICS_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_IMAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_IMAGE_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_PRESENTATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_PRESENTATION_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_SPREADSHEET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_SPREADSHEET_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT_MASTER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OASIS_OPENDOCUMENT_TEXT_WEB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OBN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OFTN_L10N_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_CONTENTACCESSDOWNLOAD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_CONTENTACCESSSTREAMING_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_CSPG_HEXBINARY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_DAE_SVG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_DAE_XHTML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_MIPPVCONTROLMESSAGE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_PAE_GEM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_SPDISCOVERY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_SPDLIST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_UEPROFILE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OIPF_USERPROFILE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OLPC_SUGAR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_ASSOCIATED_PROCEDURE_PARAMETER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_DRM_TRIGGER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_IMD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_LTKM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_NOTIFICATION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_PROVISIONINGTRIGGER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_SGBOOT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_SGDD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_SGDU - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_SIMPLE_SYMBOL_CONTAINER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_SMARTCARD_TRIGGER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_SPROV_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_BCAST_STKM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_CAB_ADDRESS_BOOK_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_CAB_FEATURE_HANDLER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_CAB_PCC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_CAB_SUBS_INVITE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_CAB_USER_PREFS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_DCD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_DCDC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_DD2_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_DRM_RISD_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_GROUP_USAGE_LIST_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_LWM2M_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_LWM2M_TLV - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_PAL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_POC_DETAILED_PROGRESS_REPORT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_POC_FINAL_REPORT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_POC_GROUPS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_POC_INVOCATION_DESCRIPTOR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_POC_OPTIMIZED_PROGRESS_REPORT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_PUSH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_SCIDM_MESSAGES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_SCWS_CONFIG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_SCWS_HTTP_REQUEST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_SCWS_HTTP_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMA_XCAP_DIRECTORY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMADS_EMAIL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMADS_FILE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMADS_FOLDER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OMALOC_SUPL_INIT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ONEPAGER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENBLOX_GAME_BINARY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENBLOX_GAME_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENEYE_OEB - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_CUSTOM_PROPERTIES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_CUSTOMXMLPROPERTIES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWING_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_CHART_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_CHARTSHAPES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMCOLORS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMDATA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMLAYOUT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_DRAWINGML_DIAGRAMSTYLE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_EXTENDED_PROPERTIES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_COMMENTAUTHORS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_COMMENTS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_HANDOUTMASTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_NOTESMASTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_NOTESSLIDE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESENTATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESENTATION_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESPROPS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDELAYOUT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDEMASTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDESHOW - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDESHOW_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDEUPDATEINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TABLESTYLES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TAGS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_TEMPLATE_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_VIEWPROPS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_CALCCHAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_CHARTSHEET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_COMMENTS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_CONNECTIONS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_DIALOGSHEET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_EXTERNALLINK_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_PIVOTCACHEDEFINITION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_PIVOTCACHERECORDS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_PIVOTTABLE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_QUERYTABLE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_REVISIONHEADERS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_REVISIONLOG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHAREDSTRINGS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEET_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEETMETADATA_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_STYLES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TABLE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TABLESINGLECELLS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_TEMPLATE_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_USERNAMES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_VOLATILEDEPENDENCIES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_WORKSHEET_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_THEME_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_THEMEOVERRIDE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_VMLDRAWING - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_COMMENTS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT_GLOSSARY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_ENDNOTES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_FONTTABLE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_FOOTER_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_FOOTNOTES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_NUMBERING_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_SETTINGS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_STYLES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_TEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_TEMPLATE_MAIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_WEBSETTINGS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_PACKAGE_CORE_PROPERTIES_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_PACKAGE_DIGITAL_SIGNATURE_XMLSIGNATURE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OPENXMLFORMATS_PACKAGE_RELATIONSHIPS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ORACLE_RESOURCE_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ORANGE_INDATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OSA_NETDEPLOY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OSGEO_MAPGUIDE_PACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OSGI_BUNDLE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OSGI_DP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OSGI_SUBSYSTEM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OTPS_CT_KIP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_OXLI_COUNTGRAPH - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PAGERDUTY_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PALM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PANOPLY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PAOS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PAWAAFILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PCOS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PG_FORMAT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PG_OSASLI - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PIACCESS_APPLICATION_LICENCE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PICSEL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PMI_WIDGET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POC_GROUP_ADVERTISEMENT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POCKETLEARN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POWERBUILDER6 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POWERBUILDER6_S - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POWERBUILDER7 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POWERBUILDER7_S - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POWERBUILDER75 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_POWERBUILDER75_S - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PREMINET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PREVIEWSYSTEMS_BOX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PROTEUS_MAGAZINE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PUBLISHARE_DELTA_TREE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PVI_PTID1 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PWG_MULTIPLEXED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_PWG_XHTML_PRINT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_QUALCOMM_BREW_APP_RES - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_QUARANTAINENET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_QUARK_QUARKXPRESS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_QUOBJECT_QUOXDOCUMENT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MOML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_AUDIT_CONF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_AUDIT_CONN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_AUDIT_DIALOG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_AUDIT_STREAM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_AUDIT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_CONF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_BASE_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_FAX_DETECT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_FAX_SENDRECV_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_GROUP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_SPEECH_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_TRANSFORM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_DIALOG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RADISYS_MSML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RAINSTOR_DATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RAPID - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RAR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_REALVNC_BED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RECORDARE_MUSICXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RECORDARE_MUSICXML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RENLEARN_RLPRINT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RIG_CRYPTONOTE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ROUTE66_LINK66_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RS_274X - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_RUCKUS_DOWNLOAD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_S3SMS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SAILINGTRACKER_TRACK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SBM_CID - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SBM_MID2 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SCRIBUS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_3DF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_CSF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_DOC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_EML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_MHT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_NET - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_PPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_TIFF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALED_XLS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALEDMEDIA_SOFTSEAL_HTML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEALEDMEDIA_SOFTSEAL_PDF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEEMAIL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEMA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEMD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SEMF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SHANA_INFORMED_FORMDATA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SHANA_INFORMED_FORMTEMPLATE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SHANA_INFORMED_INTERCHANGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SHANA_INFORMED_PACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SIMTECH_MINDMAPPER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SIREN_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SMAF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SMART_NOTEBOOK - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SMART_TEACHER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SOFTWARE602_FILLER_FORM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SOFTWARE602_FILLER_FORM_XML_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SOLENT_SDKM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SPOTFIRE_DXP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SPOTFIRE_SFS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SSS_COD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SSS_DTF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SSS_NTF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_STEPMANIA_PACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_STEPMANIA_STEPCHART - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_STREET_STREAM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SUN_WADL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SUS_CALENDAR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SVD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SWIFTVIEW_ICS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DM_NOTIFICATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DM_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DM_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DMDDF_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DMDDF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DMTNDS_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DMTNDS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_DS_NOTIFICATION - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_SYNCML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TAO_INTENT_MODULE_ARCHIVE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TCPDUMP_PCAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TMD_MEDIAFLEX_API_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TMOBILE_LIVETV - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TRID_TPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TRISCAPE_MXS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TRUEAPP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_TRUEDOC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UBISOFT_WEBPLAYER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UFDL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UIQ_THEME - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UMAJIN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UNITY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UOML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_ALERT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_ALERT_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_BEARER_CHOICE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_BEARER_CHOICE_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_CACHEOP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_CACHEOP_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_CHANNEL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_CHANNEL_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_LIST - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_LIST_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_LISTCMD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_LISTCMD_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_UPLANET_SIGNAL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_URI_MAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VALVE_SOURCE_MATERIAL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VCX - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VD_STUDY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VECTORWORKS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VEL_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VERIMATRIX_VCAS - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VIDSOFT_VIDCONFERENCE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VISIO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VISIONARY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VIVIDENCE_SCRIPTFILE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_VSF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WAP_SIC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WAP_SLC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WAP_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WAP_WMLC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WAP_WMLSCRIPTC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WEBTURBO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WFA_P2P - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WFA_WSC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WINDOWS_DEVICEPAIRING - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WMC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WMF_BOOTSTRAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WOLFRAM_MATHEMATICA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WOLFRAM_MATHEMATICA_PACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WOLFRAM_PLAYER - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WORDPERFECT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WQD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WRQ_HP3000_LABELLED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WT_STF - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WV_CSP_WBXML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WV_CSP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_WV_SSP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XACML_JSON - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XARA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XFDL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XFDL_WEBFORM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XMI_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XMPIE_CPKG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XMPIE_DPKG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XMPIE_PLAN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XMPIE_PPKG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_XMPIE_XLIM - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_HV_DIC - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_HV_SCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_HV_VOICE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_OPENSCOREFORMAT - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_OPENSCOREFORMAT_OSFPVG_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_REMOTE_SETUP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_SMAF_AUDIO - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_SMAF_PHRASE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_THROUGH_NGN - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAMAHA_TUNNEL_UDPENCAP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YAOWEME - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_YELLOWRIVER_CUSTOM_MENU - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ZUL - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VND_ZZAZZ_DECK_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VOICEXML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_VQ_RTCPXR - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WATCHERINFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WHOISPP_QUERY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WHOISPP_RESPONSE - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WITA - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WORDPERFECT5_1 - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WSDL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_WSPOLICY_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_X_WWW_FORM_URLENCODED - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_X400_BP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XACML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCAP_ATT_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCAP_CAPS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCAP_DIFF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCAP_EL_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCAP_ERROR_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCAP_NS_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCON_CONFERENCE_INFO_DIFF_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XCON_CONFERENCE_INFO_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XENC_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XHTML_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XML_DTD - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XML_EXTERNAL_PARSED_ENTITY - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XML_PATCH_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XMPP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XOP_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_XV_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_YAML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_YANG - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_YIN_XML - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ZIP - Enum constant in enum class org.refcodes.web.MediaType
- APPLICATION_ZLIB - Enum constant in enum class org.refcodes.web.MediaType
- ARRAY_SELECTOR - Static variable in interface org.refcodes.web.MediaTypeFactory
- AUDIO - Enum constant in enum class org.refcodes.web.TopLevelType
- AUDIO_1D_INTERLEAVED_PARITYFEC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_32KADPCM - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_3GPP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_3GPP2 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_AC3 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_AMR - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_AMR_WB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_AMR_WB_ - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_APTX - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ASC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ATRAC_ADVANCED_LOSSLESS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ATRAC_X - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ATRAC3 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_BASIC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_BV16 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_BV32 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_CLEARMODE - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_CN - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DAT12 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DLS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DSR_ES201108 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DSR_ES202050 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DSR_ES202211 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DSR_ES202212 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DV - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_DVI4 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EAC3 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ENCAPRTP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRC_QCP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRC0 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRC1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCB0 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCB1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCNW - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCNW0 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCNW1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCWB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCWB0 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVRCWB1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EVS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_FWDRED - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G711_0 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G719 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G722 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G7221 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G723 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G726_16 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G726_24 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G726_32 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G726_40 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G728 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G729 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G729D - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_G729E - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_GSM - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_GSM_EFR - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_GSM_HR_08 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ILBC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_IP_MR_V2_5 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_L16 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_L20 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_L24 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_L8 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_LPC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MOBILE_XMF - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MP4 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MP4A_LATM - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MPA - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MPA_ROBUST - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MPEG - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_MPEG4_GENERIC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_OGG - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_OPUS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_PCMA - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_PCMA_WB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_PCMU - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_PCMU_WB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_PRS_SID - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_RAPTORFEC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_RED - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_RTP_ENC_AESCM128 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_RTP_MIDI - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_RTPLOOPBACK - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_RTX - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_SMV - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_SMV_QCP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_SMV0 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_SP_MIDI - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_SPEEX - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_T140C - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_T38 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_TELEPHONE_EVENT - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_TONE - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_UEMCLIP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_ULPFEC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VDVI - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VMR_WB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_3GPP_IUFP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_4SB - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_AUDIOKOZ - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_CELP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_CISCO_NSE - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_CMLES_RADIO_EVENTS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_CNS_ANP1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_CNS_INF1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DECE_AUDIO - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DIGITAL_WINDS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DLNA_ADTS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_HEAAC_1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_HEAAC_2 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_MLP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_MPS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_PL2 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_PL2X - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_PL2Z - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DOLBY_PULSE_1 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DRA - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DTS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DTS_HD - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_DVB_FILE - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_EVERAD_PLJ - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_HNS_AUDIO - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_LUCENT_VOICE - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_MS_PLAYREADY_MEDIA_PYA - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_NOKIA_MOBILE_XMF - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_NORTEL_VBK - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_NUERA_ECELP4800 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_NUERA_ECELP7470 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_NUERA_ECELP9600 - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_OCTEL_SBC - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_QCELP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_RHETOREX_32KADPCM - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_RIP - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_SEALEDMEDIA_SOFTSEAL_MPEG - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VND_VMX_CVSD - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VORBIS - Enum constant in enum class org.refcodes.web.MediaType
- AUDIO_VORBIS_CONFIG - Enum constant in enum class org.refcodes.web.MediaType
- AUTH0_LEGACY_ACCESS_TOKEN - Enum constant in enum class org.refcodes.web.GrantType
-
Use legacy Access Token "
http://auth0.com/oauth/legacy/grant-type/access_token
" Grant (Auth0 legacy grant). - AUTH0_LEGACY_DELEGATION_ID_TOKEN - Enum constant in enum class org.refcodes.web.GrantType
-
Use legacy ID Token "
http://auth0.com/oauth/legacy/grant-type/delegation/id_token
" Grant (Auth0 legacy grant). - AUTH0_LEGACY_DELEGATION_REFRESH_TOKEN - Enum constant in enum class org.refcodes.web.GrantType
-
Use Legacy Refresh Tokens "
http://auth0.com/oauth/legacy/grant-type/delegation/refresh_token
" Grant (Auth0 legacy grant). - AUTH0_LEGACY_RO - Enum constant in enum class org.refcodes.web.GrantType
-
Use legacy RO "
http://auth0.com/oauth/legacy/grant-type/ro
" Grant (Auth0 legacy grant). - AUTH0_LEGACY_RO_JWT_BEARER - Enum constant in enum class org.refcodes.web.GrantType
-
Use legacy JWT-Bearer "
http://auth0.com/oauth/legacy/grant-type/ro/jwt-bearer
" Grant (Auth0 legacy grant). - AUTH0_MFA_OOB - Enum constant in enum class org.refcodes.web.GrantType
-
Multi-factor Authentication OOB "
http://auth0.com/oauth/grant-type/mfa-oob
" Grant Request (Auth0 extension grant). - AUTH0_MFA_OTP - Enum constant in enum class org.refcodes.web.GrantType
-
Multi-factor Authentication OTP "
http://auth0.com/oauth/grant-type/mfa-otp
" Grant Request (Auth0 extension grant). - AUTH0_MFA_RECOVERY_CODE - Enum constant in enum class org.refcodes.web.GrantType
-
Multi-factor Authentication Recovery "
http://auth0.com/oauth/grant-type/mfa-recovery-code
" Grant Request (Auth0 extension grant). - AUTH0_PASSWORD_REALM - Enum constant in enum class org.refcodes.web.GrantType
-
Use an extension grant "
http://auth0.com/oauth/grant-type/password-realm
" similar to the Resource Owner Password Grant that includes the ability to indicate a specific realm (Auth0 extension grant). - AUTH0_PASSWORDLESS_OTP - Enum constant in enum class org.refcodes.web.GrantType
-
Embedded Passwordless Login "
http://auth0.com/oauth/grant-type/passwordless/otp
" Grant Request (Auth0 extension grant). - AUTHORIZATION - Enum constant in enum class org.refcodes.web.HeaderField
- AUTHORIZATION_CODE - Enum constant in enum class org.refcodes.web.GrantType
-
Authorization Code "
authorization_code
" Grant (specification conforming grant). - AuthType - Enum Class in org.refcodes.web
-
The Enum AuthType.
- AuthTypeAccessor - Interface in org.refcodes.web
-
Provides an accessor for a
AuthType
property. - AuthTypeAccessor.AuthTypeBuilder<B extends AuthTypeAccessor.AuthTypeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a
AuthType
property returning the builder for applying multiple build operations. - AuthTypeAccessor.AuthTypeMutator - Interface in org.refcodes.web
-
Provides a mutator for a
AuthType
property. - AuthTypeAccessor.AuthTypeProperty - Interface in org.refcodes.web
-
Provides a
AuthType
property. - AuthTypeCredentials<T extends AuthTypeCredentials<T,
V>, V extends org.refcodes.mixin.Validatable<V>> - Interface in org.refcodes.web -
The Interface AuthTypeCredentials.
B
- BAD_GATEWAY - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
502 Bad Gateway (HTTP/1.0 - RFC 1945)
- BAD_INVOCATION - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- BAD_REQUEST - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
400 Bad Request (HTTP/1.1 - RFC 2616)
- BAD_RESPONSE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- BadGatewayException - Exception in org.refcodes.web
-
The Class BadGatewayException.
- BadGatewayException(String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, Throwable) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, Url) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, Url, String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(Throwable) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(Url, Throwable) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayException
-
Instantiates a new according exception.
- BadGatewayRuntimeException - Exception in org.refcodes.web
-
The Class BadGatewayRuntimeException.
- BadGatewayRuntimeException(String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, Url) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(Throwable) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadGatewayRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadGatewayRuntimeException
-
Instantiates a new according exception.
- BadInvocationException - Exception in org.refcodes.web
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- BadInvocationException(String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, Throwable) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, Url) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, Url, String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(Throwable) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(Url, Throwable) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationException
-
Instantiates a new according exception.
- BadInvocationRuntimeException - Exception in org.refcodes.web
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- BadInvocationRuntimeException(String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, Url) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(Throwable) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadInvocationRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadInvocationRuntimeException
-
Instantiates a new according exception.
- BadRequestException - Exception in org.refcodes.web
-
The Class BadRequestException.
- BadRequestException(String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, Throwable) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, Url) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, Url, String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(Throwable) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(Throwable, String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(Url, Throwable) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadRequestException
-
Instantiates a new according exception.
- BadRequestRuntimeException - Exception in org.refcodes.web
-
The Class BadRequestRuntimeException.
- BadRequestRuntimeException(String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, Url) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(Throwable) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadRequestRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadRequestRuntimeException
-
Instantiates a new according exception.
- BadResponseException - Exception in org.refcodes.web
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- BadResponseException(String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, Throwable) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, Url) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, Url, String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(Throwable) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(Throwable, String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(Url, Throwable) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadResponseException
-
Instantiates a new according exception.
- BadResponseRuntimeException - Exception in org.refcodes.web
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- BadResponseRuntimeException(String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, Url) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(Throwable) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BadResponseRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BadResponseRuntimeException
-
Instantiates a new according exception.
- BASE_URL - Enum constant in enum class org.refcodes.web.MediaTypeParameter
- BaseLocatorAccessor - Interface in org.refcodes.web
-
Provides an accessor for a base locator property.
- BaseLocatorAccessor.BaseLocatorBuilder<B extends BaseLocatorAccessor.BaseLocatorBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a base locator property returning the builder for applying multiple build operations.
- BaseLocatorAccessor.BaseLocatorMutator - Interface in org.refcodes.web
-
Provides a mutator for a base locator property.
- BaseLocatorAccessor.BaseLocatorProperty - Interface in org.refcodes.web
-
Provides a base locator property.
- BaseUrlAccessor - Interface in org.refcodes.web
-
Provides an accessor for a base URL (protocol, host, port, locator) property.
- BaseUrlAccessor.BaseUrlBuilder<B extends BaseUrlAccessor.BaseUrlBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a base URL (protocol, host, port, path) property returning the builder for applying multiple build operations.
- BaseUrlAccessor.BaseUrlMutator - Interface in org.refcodes.web
-
Provides a mutator for a base URL (protocol, host, port, locator) property.
- BaseUrlAccessor.BaseUrlProperty - Interface in org.refcodes.web
-
Provides a base URL (protocol, host, port, path) property.
- BASIC - Enum constant in enum class org.refcodes.web.AuthType
- BASIC_AUTH_FAILURE - Enum constant in enum class org.refcodes.web.BasicAuthResponse
-
Basic-Auth was considered having failed.
- BASIC_AUTH_REQUIRED - Enum constant in enum class org.refcodes.web.BasicAuthResponse
-
Basic-Auth was considered to be required.
- BASIC_AUTH_SKIP - Enum constant in enum class org.refcodes.web.BasicAuthResponse
-
Basic-Auth was considered being irrelevant.
- BASIC_AUTH_SUCCESS - Enum constant in enum class org.refcodes.web.BasicAuthResponse
-
Basic-Auth was considered being successful.
- BASIC_REALM - Static variable in interface org.refcodes.web.HeaderFields
- BasicAuthCredentials - Class in org.refcodes.web
-
The
BasicAuthCredentials
defines a type for representing a Basic-Authentication credentials Header-Field. - BasicAuthCredentials() - Constructor for class org.refcodes.web.BasicAuthCredentials
-
Instantiates a new
BasicAuthCredentials
instance. - BasicAuthCredentials(String, String) - Constructor for class org.refcodes.web.BasicAuthCredentials
-
Instantiates a new
BasicAuthCredentials
instance. - BasicAuthCredentialsAccessor - Interface in org.refcodes.web
-
Provides an accessor for a
BasicAuthCredentials
property. - BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B extends BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a
BasicAuthCredentials
property returning the builder for applying multiple build operations. - BasicAuthCredentialsAccessor.BasicAuthCredentialsMutator - Interface in org.refcodes.web
-
Provides a mutator for a
BasicAuthCredentials
property. - BasicAuthCredentialsAccessor.BasicAuthCredentialsProperty - Interface in org.refcodes.web
-
Provides a
BasicAuthCredentials
property. - BasicAuthCredentialsBuilder - Class in org.refcodes.web
-
The
BasicAuthCredentialsBuilder
compares the secret (BasicAuthCredentials.getSecret()
) case sensitive but the username (BasicAuthCredentials.getIdentity()
) case insensitive within theBasicAuthCredentials.equals(Object)
method. - BasicAuthCredentialsBuilder() - Constructor for class org.refcodes.web.BasicAuthCredentialsBuilder
-
Constructs an empty
BasicAuthCredentialsBuilder
type. - BasicAuthCredentialsBuilder(String, String) - Constructor for class org.refcodes.web.BasicAuthCredentialsBuilder
-
Instantiates a new
BasicAuthCredentialsBuilder
instance. - BasicAuthFailureException - Exception in org.refcodes.web
-
Thrown in case HTTP basic authorization failed, e.g. verifying
BasicAuthCredentials
failed. - BasicAuthFailureException(String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, Url) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, Url, String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureException
- BasicAuthFailureRuntimeException - Exception in org.refcodes.web
-
Thrown in case HTTP basic authorization failed, e.g. verifying
BasicAuthCredentials
failed. - BasicAuthFailureRuntimeException(String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, Url) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthFailureRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthFailureRuntimeException
- BasicAuthObservable<B extends BasicAuthObservable<B>> - Interface in org.refcodes.web
-
An observable which notifies the registered
BasicAuthObserver
on incoming HTTP Basic-Authentication requests. - BasicAuthObserver - Interface in org.refcodes.web
-
An observer being notified by incoming HTTP Basic-Authentication requests which might have been registered via
BasicAuthObservable.onBasicAuthRequest(BasicAuthObserver)
possibly using lambda syntax. - BasicAuthRequest - Class in org.refcodes.web
-
Defines a
BasicAuthRequest
describes a Baisc-Auth request as of HTTP. - BasicAuthRequest(HttpMethod, Url, BasicAuthCredentials) - Constructor for class org.refcodes.web.BasicAuthRequest
-
Constructs a
BasicAuthRequest
instance with required attributes. - BasicAuthRequiredException - Exception in org.refcodes.web
-
Thrown in case HTTP basic authorization is required but no required
HeaderField.WWW_AUTHENTICATE
data was found, e.g. - BasicAuthRequiredException(String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, Url) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, Url, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredException
- BasicAuthRequiredRuntimeException - Exception in org.refcodes.web
-
Thrown in case HTTP basic authorization is required but no required
HeaderField.WWW_AUTHENTICATE
data was found, e.g. - BasicAuthRequiredRuntimeException(String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, Url) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthRequiredRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.BasicAuthRequiredRuntimeException
- BasicAuthResponse - Enum Class in org.refcodes.web
-
The enumeration for a Basic-Auth response.
- BasicCredentials - Class in org.refcodes.web
-
The
BasicCredentials
describes the attributes required by a Basic-Auth authentication over HTTP(S). - BasicCredentials() - Constructor for class org.refcodes.web.BasicCredentials
-
Instantiates a new basic credentials impl.
- BasicCredentials(String, String) - Constructor for class org.refcodes.web.BasicCredentials
-
Instantiates a new basic credentials impl.
- BEARER - Enum constant in enum class org.refcodes.web.AuthType
- BEARER - Enum constant in enum class org.refcodes.web.TokenType
-
Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).
- BearerAuthCredentials - Class in org.refcodes.web
-
The
BearerAuthCredentials
defines a type for representing a Bearer-Authentication credentials Header-Field. - BearerAuthCredentials() - Constructor for class org.refcodes.web.BearerAuthCredentials
-
Instantiates a new bearer auth credentials impl.
- BearerAuthCredentials(String) - Constructor for class org.refcodes.web.BearerAuthCredentials
-
Instantiates a new bearer auth credentials impl.
- BearerAuthCredentialsAccessor - Interface in org.refcodes.web
-
Provides an accessor for a
BearerAuthCredentials
property. - BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder<B extends BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a
BearerAuthCredentials
property returning the builder for applying multiple build operations. - BearerAuthCredentialsAccessor.BearerAuthCredentialsMutator - Interface in org.refcodes.web
-
Provides a mutator for a
BearerAuthCredentials
property. - BearerAuthCredentialsAccessor.BearerAuthCredentialsProperty - Interface in org.refcodes.web
-
Provides a
BearerAuthCredentials
property. - BR - Enum constant in enum class org.refcodes.web.ContentEncoding
C
- CHARSET - Enum constant in enum class org.refcodes.web.MediaTypeParameter
- CLIENT_CREDENTIALS - Enum constant in enum class org.refcodes.web.GrantType
-
Client Credentials "
client_credentials
" Grant (specification conforming grant). - CLIENT_ID - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- CLIENT_ID - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- CLIENT_SECRET - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- CLIENT_SECRET - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- COLLECTION_SELECTOR - Static variable in interface org.refcodes.web.MediaTypeFactory
- COMPRESS - Enum constant in enum class org.refcodes.web.ContentEncoding
- CONFLICT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
409 Conflict (HTTP/1.1 - RFC 2616)
- ConflictException - Exception in org.refcodes.web
-
The Class ConflictException.
- ConflictException(String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, Throwable) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, Throwable, String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, Url) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, Url, String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(Throwable) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(Throwable, String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(Url, Throwable) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ConflictException
-
Instantiates a new according exception.
- ConflictRuntimeException - Exception in org.refcodes.web
-
The Class ConflictRuntimeException.
- ConflictRuntimeException(String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- ConflictRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ConflictRuntimeException
-
Instantiates a new according exception.
- CONNECT - Enum constant in enum class org.refcodes.web.HttpMethod
- CONNECTION - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_ENCODING - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_LANGUAGE - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_LENGTH - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_LOCATION - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_MD5 - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_RANGE - Enum constant in enum class org.refcodes.web.HeaderField
- CONTENT_TYPE - Enum constant in enum class org.refcodes.web.HeaderField
- ContentEncoding - Enum Class in org.refcodes.web
-
ContentEncoding
s are specified an an HTTP Header-FieldsHeaderField.ACCEPT_ENCODING
orHeaderField.CONTENT_ENCODING
and how to encode a HTTP body or how a HTTP body is encoded. - ContentType - Class in org.refcodes.web
-
A
ContentType
represents aMediaType
and its accordingTopLevelType
with additional (optional) suffixed parameters (as of the according HTTP Header-Fields). - ContentType(String) - Constructor for class org.refcodes.web.ContentType
-
Constructs a
ContentType
instance form a Media-ArgumentString
as passed in the according HTTP Header-Fields. - ContentType(MediaType) - Constructor for class org.refcodes.web.ContentType
- ContentType(MediaType, Map<String, String>) - Constructor for class org.refcodes.web.ContentType
-
Instantiates a new content type impl.
- ContentTypeAccessor - Interface in org.refcodes.web
-
Provides an accessor for a Content-Type property.
- ContentTypeAccessor.ContentTypeBuilder<B extends ContentTypeAccessor.ContentTypeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a Content-Type property returning the builder for applying multiple build operations.
- ContentTypeAccessor.ContentTypeMutator - Interface in org.refcodes.web
-
Provides a mutator for a Content-Type property.
- ContentTypeAccessor.ContentTypeProperty - Interface in org.refcodes.web
-
Provides a Content-Type property.
- ContentTypeAccessor.ContentTypeProvider - Interface in org.refcodes.web
-
A provider interface provides a "toSomething(?)"
- CONTINUE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
100 Continue (HTTP/1.1 - RFC 2616)
- Cookie - Interface in org.refcodes.web
-
The
Cookie
represents a HTTP cookie. - COOKIE - Enum constant in enum class org.refcodes.web.HeaderField
-
The Cookie HTTP Request-Header contains stored HTTP cookies previously sent by the server with the
HeaderField.SET_COOKIE
header. - CookieAttribute - Enum Class in org.refcodes.web
-
The Enum CookieAttribute.
- copyHttpFields(Map<String, List<String>>, HttpFields<?>) - Static method in class org.refcodes.web.AbstractHttpFields
-
Copies the provided "from" fields into the provided "to" fields.
- createCookie(String) - Method in class org.refcodes.web.AbstractHeaderFields
- createCookie(String) - Method in class org.refcodes.web.RequestHeaderFields
- createCookie(String) - Method in class org.refcodes.web.ResponseHeaderFields
- createCookie(String, String) - Method in class org.refcodes.web.AbstractHeaderFields
-
Creates a plain
Cookie
with the given name and value. - createCookie(String, String) - Method in class org.refcodes.web.RequestHeaderFields
-
Creates a plain
Cookie
with the given name and value. - createCookie(String, String) - Method in class org.refcodes.web.ResponseHeaderFields
-
Creates a plain
Cookie
with the given name and value. - CREATED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
201 Created (HTTP/1.0 - RFC 1945)
- CREATED - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
201 Created (HTTP/1.0 - RFC 1945)
- CUSTOM - Enum constant in enum class org.refcodes.web.LoadBalancingStrategy
-
Some custom server from the list of applicable servers is used for the request and all succeeding request..
D
- DEFAULT_PORT - Static variable in class org.refcodes.web.HttpServerContextBuilder
- DEFAULT_REDIRECT_DEPTH - Static variable in class org.refcodes.web.HttpClientRequest
- DEFAULT_SCHEME - Static variable in class org.refcodes.web.HttpServerContextBuilder
- DEFLATE - Enum constant in enum class org.refcodes.web.ContentEncoding
- DELETE - Enum constant in enum class org.refcodes.web.HttpMethod
- DELIMITER_AUTH_TYPE - Static variable in class org.refcodes.web.BearerAuthCredentials
- DELIMITER_BASIC_AUTH - Static variable in class org.refcodes.web.BasicAuthCredentials
- DELIMITER_CREDENTIALS - Static variable in class org.refcodes.web.BasicAuthCredentials
- DEVICE_CODE - Enum constant in enum class org.refcodes.web.GrantType
-
Device Authorization "
urn:ietf:params:oauth:grant-type:device_code
" Grant (specification conforming grant). - dispose() - Method in class org.refcodes.web.OauthToken
- DOMAIN - Enum constant in enum class org.refcodes.web.CookieAttribute
E
- entrySet() - Method in class org.refcodes.web.AbstractHeaderFields
- equals(Object) - Method in class org.refcodes.web.BasicAuthCredentials
- equals(Object) - Method in class org.refcodes.web.BearerAuthCredentials
- equals(Object) - Method in class org.refcodes.web.ContentType
- EXPECTATION_FAILED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
417 Expectation Failed (HTTP/1.1 - RFC 2616)
- ExpectationFailedException - Exception in org.refcodes.web
-
The Class ExpectationFailedException.
- ExpectationFailedException(String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, Url) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, Url, String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(Url, Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException - Exception in org.refcodes.web
-
The Class ExpectationFailedRuntimeException.
- ExpectationFailedRuntimeException(String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- ExpectationFailedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ExpectationFailedRuntimeException
-
Instantiates a new according exception.
- EXPIRES - Enum constant in enum class org.refcodes.web.CookieAttribute
- EXPIRES - Enum constant in enum class org.refcodes.web.HeaderField
- EXPIRES_IN - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- EXPIRES_IN - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- EXTENSION_HEADER - Enum constant in enum class org.refcodes.web.HeaderField
F
- FAILED_DEPENDENCY - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
424 Failed Dependency (WebDAV - RFC 2518).
- FailedDependencyException - Exception in org.refcodes.web
-
The Class FailedDependencyException.
- FailedDependencyException(String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, Throwable) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, Url) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, Url, String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, Url, Throwable) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(Throwable) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(Url, Throwable) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyException(Url, Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException - Exception in org.refcodes.web
-
The Class FailedDependencyRuntimeException.
- FailedDependencyRuntimeException(String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, Url) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(Throwable) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FailedDependencyRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.FailedDependencyRuntimeException
-
Instantiates a new according exception.
- FORBIDDEN - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
403 Forbidden (HTTP/1.0 - RFC 1945)
- ForbiddenException - Exception in org.refcodes.web
-
The Class ForbiddenException.
- ForbiddenException(String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, Throwable) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, Url) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, Url, String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(Throwable) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(Url, Throwable) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenException
-
Instantiates a new according exception.
- ForbiddenRuntimeException - Exception in org.refcodes.web
-
The Class ForbiddenRuntimeException.
- ForbiddenRuntimeException(String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- ForbiddenRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ForbiddenRuntimeException
-
Instantiates a new according exception.
- FormFields - Class in org.refcodes.web
-
The
FormFields
represent the URL's Query-String by the notation originally used by the GET request of the ancient web forms (see "https://en.wikipedia.org/wiki/Query_string#Web_forms"). - FormFields() - Constructor for class org.refcodes.web.FormFields
-
Instantiates a new form fields impl.
- FormFields(String) - Constructor for class org.refcodes.web.FormFields
-
Initializes the instance with the fields provided by the given HTTP Form-Fields (HTTP Query-String).
- FormFields(Map<String, List<String>>) - Constructor for class org.refcodes.web.FormFields
-
Initializes the instance with the fields provided by the given
Map
. - FormFieldsAccessor - Interface in org.refcodes.web
-
Provides an accessor for a request Form-Fields property.
- FormFieldsAccessor.FormFieldsBuilder<B extends FormFieldsAccessor.FormFieldsBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for a request Form-Fields property.
- FormFieldsAccessor.FormFieldsMutator - Interface in org.refcodes.web
-
Provides a mutator for a request Form-Fields property.
- FormFieldsAccessor.FormFieldsProperty - Interface in org.refcodes.web
-
Provides a request Form-Fields property.
- FormMediaTypeFactory - Class in org.refcodes.web
-
Implements the
MediaTypeFactory
for Media-Type "application/x-www-form-urlencoded" (MediaType.APPLICATION_X_WWW_FORM_URLENCODED
). - FormMediaTypeFactory() - Constructor for class org.refcodes.web.FormMediaTypeFactory
- FragmentAccessor - Interface in org.refcodes.web
-
Provides an accessor for a fragment property.
- FragmentAccessor.FragmentBuilder<B extends FragmentAccessor.FragmentBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for an fragment property.
- FragmentAccessor.FragmentMutator - Interface in org.refcodes.web
-
Provides a mutator for a fragment property.
- FragmentAccessor.FragmentProperty - Interface in org.refcodes.web
-
Provides a fragment property.
- fromBodyFormFields(String) - Method in class org.refcodes.web.FormFields
-
Processes the HTTP Form-Fields body
String
and retrieves the therein defined Form-Fields and adds them to theFormFields
instance. - fromHeaderField(HeaderField) - Static method in enum class org.refcodes.web.OauthField
-
Resolves the
OauthField
from theHeaderField
. - fromHttpAuthorization(String) - Method in interface org.refcodes.web.AuthTypeCredentials
-
Initializes this
AuthTypeCredentials
instance from theHeaderField.AUTHORIZATION
Header-Fields's value. - fromHttpAuthorization(String) - Method in class org.refcodes.web.BasicAuthCredentials
-
Initializes this
AuthTypeCredentials
instance from theHeaderField.AUTHORIZATION
Header-Fields's value. - fromHttpAuthorization(String) - Method in class org.refcodes.web.BearerAuthCredentials
-
Initializes this
AuthTypeCredentials
instance from theHeaderField.AUTHORIZATION
Header-Fields's value. - fromHttpCookie(String) - Method in interface org.refcodes.web.Cookie
-
Sets the cookie according to the provided HTTP cookie text.
- fromHttpCookie(String) - Method in class org.refcodes.web.RequestCookie
-
Sets the cookie according to the provided HTTP cookie text.
- fromHttpCookie(String) - Method in class org.refcodes.web.ResponseCookie
-
Sets the cookie according to the provided HTTP cookie text.
- fromHttpEncoding(String) - Static method in enum class org.refcodes.web.ContentEncoding
-
Returns that
ContentEncoding
represented by the given HTTP header's encoding. - fromHttpMediaSubtype(String) - Static method in enum class org.refcodes.web.MediaType
-
Retrieves the
MediaType
representing the provided HTTP Media-Type (ignoring the case). - fromHttpMediaTypeParameter(String) - Static method in enum class org.refcodes.web.MediaTypeParameter
-
Returns that
MediaTypeParameter
represented by the given HTTP Media-Type parameter. - fromHttpMethod(String) - Static method in enum class org.refcodes.web.HttpMethod
-
From http method.
- fromHttpTopLevelType(String) - Static method in enum class org.refcodes.web.TopLevelType
-
Returns that
TopLevelType
represented by the given HTTP Top-Level-Media-Type. - fromKey(String) - Static method in enum class org.refcodes.web.CookieAttribute
-
From key.
- fromMarshaled(InputStream, Class<?>...) - Method in interface org.refcodes.web.MediaTypeFactory
- fromMarshaled(InputStream, Class<T>) - Method in class org.refcodes.web.HtmlMediaTypeFactory
- fromMarshaled(InputStream, Class<T>) - Method in interface org.refcodes.web.MediaTypeFactory
- fromMarshaled(InputStream, Class<T>) - Method in class org.refcodes.web.XmlMediaTypeFactory
- fromMarshaled(InputStream, Class<T>, Map<String, String>) - Method in interface org.refcodes.web.MediaTypeFactory
- fromMarshaled(InputStream, Map<String, String>, Class<?>...) - Method in class org.refcodes.web.HtmlMediaTypeFactory
- fromMarshaled(InputStream, Map<String, String>, Class<?>...) - Method in interface org.refcodes.web.MediaTypeFactory
- fromMarshaled(InputStream, Map<String, String>, Class<?>...) - Method in class org.refcodes.web.XmlMediaTypeFactory
- fromName(String) - Static method in enum class org.refcodes.web.AuthType
-
Returns that
AuthType
represented by the given name. - fromName(String) - Static method in enum class org.refcodes.web.GrantType
-
Returns that
GrantType
represented by the given name. - fromName(String) - Static method in enum class org.refcodes.web.TokenType
-
Returns that
TokenType
represented by the given name. - fromPath(String) - Static method in enum class org.refcodes.web.OauthField
-
Resolves the
OauthField
from theHttpBodyMap
path. - fromTopLevelType(TopLevelType) - Static method in enum class org.refcodes.web.MediaType
-
Returns all herein defined
MediaType
elements belonging to the givenTopLevelType
. - fromUnmarshaled(SRC) - Method in interface org.refcodes.web.MediaTypeFactory
- fromUnmarshaled(SRC, Map<String, String>) - Method in interface org.refcodes.web.MediaTypeFactory
- fromUrl(String) - Method in class org.refcodes.web.FormFields
-
Extracts the HTTP Query-String from the provided URL by identifying the first question mark ("?")
- fromUrl(String) - Method in class org.refcodes.web.Url
- fromUrl(String) - Method in class org.refcodes.web.UrlBuilder
- fromURL(URL) - Method in class org.refcodes.web.Url
- fromURL(URL) - Method in class org.refcodes.web.UrlBuilder
- fromUrlQueryString(String) - Method in class org.refcodes.web.FormFields
-
Processes the HTTP Query-String and retrieves the therein defined Form-Fields and adds them to the
FormFields
instance.
G
- GATEWAY_TIMEOUT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
504 Gateway Timeout (HTTP/1.1 - RFC 2616)
- GatewayTimeoutException - Exception in org.refcodes.web
-
The Class GatewayTimeoutException.
- GatewayTimeoutException(String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, Url) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, Url, String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, Url, Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(Url, Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutException(Url, Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException - Exception in org.refcodes.web
-
The Class GatewayTimeoutRuntimeException.
- GatewayTimeoutRuntimeException(String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, Url) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- GatewayTimeoutRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.GatewayTimeoutRuntimeException
-
Instantiates a new according exception.
- get(Object) - Method in class org.refcodes.web.AbstractHeaderFields
- get(HeaderField) - Method in interface org.refcodes.web.HeaderFields
-
Gets the values for the according Header-Field.
- GET - Enum constant in enum class org.refcodes.web.HttpMethod
- getAcceptCharsets() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Accept-Charset request-Header-Field
HeaderField.ACCEPT_CHARSET
. "... - getAcceptEncodings() - Method in interface org.refcodes.web.HeaderFields
-
Gets the the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - getAcceptLanguages() - Method in interface org.refcodes.web.HeaderFields
-
Gets the the Content-Encoding entity-Header-Field
HeaderField.ACCEPT_LANGUAGE
: - getAcceptTypes() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Accept request-Header-Field
HeaderField.ACCEPT
: "... - getAccessToken() - Method in class org.refcodes.web.OauthToken
-
Returns the access token.
- getAllCookies() - Method in class org.refcodes.web.AbstractHeaderFields
-
Retrieves an array of cookies sent by the client stored in this
RequestHeaderFields
instance. - getAllCookies() - Method in interface org.refcodes.web.HeaderFields
-
Retrieves an array of cookies sent by the client stored in this
RequestHeaderFields
instance. - getAllowMethods() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Allow entity-Header-Field
HeaderField.ALLOW
: "... - getAuthenticate() - Method in interface org.refcodes.web.HeaderFields
-
Gets the WWW-Authenticate Response-Header-Field
HeaderField.WWW_AUTHENTICATE
: "... - getAuthorization() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - getAuthType() - Method in interface org.refcodes.web.AuthTypeAccessor
-
Retrieves the
AuthType
from the Authorization-Type property (or null if there are none such credentials). - getAuthType() - Method in class org.refcodes.web.BasicAuthCredentials
-
Retrieves the
AuthType
from the Authorization-Type property (or null if there are none such credentials). - getAuthType() - Method in class org.refcodes.web.BearerAuthCredentials
-
Retrieves the
AuthType
from the Authorization-Type property (or null if there are none such credentials). - getBaseLocator() - Method in interface org.refcodes.web.BaseLocatorAccessor
-
Retrieves the base locator from the base locator property.
- getBaseUrl() - Method in interface org.refcodes.web.BaseUrlAccessor
-
Retrieves the base URL (protocol, host, port, locator) from the base URL (protocol, host, port, locator) property.
- getBaseUrl() - Method in class org.refcodes.web.HttpClientContextBuilder
-
Retrieves the base URL (protocol, host, port, locator) from the base URL (protocol, host, port, locator) property.
- getBasicAuth() - Method in interface org.refcodes.web.HeaderFields
-
Retrieves the WWW-Authenticate field for Basic-Authentication.
- getBasicAuthCredentials() - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor
-
Retrieves the
BasicAuthCredentials
from the Basic-Authentication credentials property (or null if there are none such credentials). - getBasicAuthCredentials() - Method in class org.refcodes.web.BasicAuthRequest
-
Retrieves the
BasicAuthCredentials
from the Basic-Authentication credentials property (or null if there are none such credentials). - getBasicAuthCredentials() - Method in interface org.refcodes.web.HeaderFields
-
Retrieves the
BasicAuthCredentials
from the request (or null if there are none such credentials). - getBearerAuthCredentials() - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor
-
Retrieves the
BearerAuthCredentials
from the bearer auth credentials property (or null if there are none such credentials). - getBearerAuthCredentials() - Method in interface org.refcodes.web.HeaderFields
-
Retrieves the
BearerAuthCredentials
from the request (or null if there are none such credentials). - getCharsetParametrer() - Method in class org.refcodes.web.ContentType
-
Retrieves the charset parameter from the properties of this
ContentType
instance. - getContentEncoding() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - getContentLength() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Content-Length request-Header-Field
HeaderField.CONTENT_LENGTH
: "... - getContentType() - Method in interface org.refcodes.web.ContentTypeAccessor
-
Retrieves the Content-Type from the Content-Type property.
- getContentType() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Content-Type entity-Header-Field
HeaderField.CONTENT_TYPE
: "... - getCookieFieldName() - Method in class org.refcodes.web.AbstractHeaderFields
-
The Header-Field name for the
Cookie
elements. - getCookieFieldName() - Method in class org.refcodes.web.RequestHeaderFields
-
The Header-Field name for the
Cookie
elements. - getCookieFieldName() - Method in class org.refcodes.web.ResponseHeaderFields
-
The Header-Field name for the
Cookie
elements. - getCookies(String) - Method in interface org.refcodes.web.HeaderFields
-
Retrieves an individual cookie sent by the client stored in this
RequestHeaderFields
instance. - getDirAt(int) - Method in class org.refcodes.web.HttpBodyMap
- getDirAt(String, int) - Method in class org.refcodes.web.HttpBodyMap
- getDomain() - Method in class org.refcodes.web.ResponseCookie
- getExpiresDate() - Method in class org.refcodes.web.ResponseCookie
-
Returns the expiration date of this cookie.
- getExpiresIn() - Method in class org.refcodes.web.OauthToken
-
Returns the time in seconds till the access token (
OauthToken.getAccessToken()
) expires. - getFactoryMediaTypes() - Method in interface org.refcodes.web.MediaTypeFactoryLookup
-
Returns the currently supported
MediaType
s as of theMediaTypeFactory
instances being added and in the order of them being added. - getFirst(Enum<?>) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.getFirst(String)
though using the provided enumeration'sEnum.toString()
method to determine the key. - getFirst(String) - Method in interface org.refcodes.web.HttpFields
-
Returns the first Header-Field value in the list of values associated with the given Header-Field.
- getFirst(HeaderField) - Method in interface org.refcodes.web.HeaderFields
-
Gets the first value of the according Header-Field.
- getFirstCookie(String) - Method in interface org.refcodes.web.HeaderFields
-
Same as
HeaderFields.getAllCookies()
though just returning the first cookie. - getFormFields() - Method in interface org.refcodes.web.FormFieldsAccessor
-
Retrieves the request Form-Fields from the request Form-Fields property.
- getFragment() - Method in interface org.refcodes.web.FragmentAccessor
-
Retrieves the fragment from the fragment property.
- getFragment() - Method in class org.refcodes.web.Url
-
Retrieves the fragment from the fragment property.
- getGrantType() - Method in class org.refcodes.web.OauthToken
-
Returns the
GrantType
used by this token. - getHeaderField() - Method in interface org.refcodes.web.HeaderFieldAccessor
-
Retrieves the
HeaderField
from theHeaderField
property. - getHeaderField() - Method in enum class org.refcodes.web.OauthField
-
Retrieves the
HeaderField
from theHeaderField
property. - getHeaderFields() - Method in class org.refcodes.web.AbstractHttpRequest
-
Retrieves the Header-Fields from the Header-Fields property.
- getHeaderFields() - Method in class org.refcodes.web.AbstractHttpResponse
-
Retrieves the Header-Fields from the Header-Fields property.
- getHeaderFields() - Method in interface org.refcodes.web.HeaderFieldsAccessor
-
Retrieves the Header-Fields from the Header-Fields property.
- getHost() - Method in interface org.refcodes.web.HeaderFields
-
Gets the Host request-Header-Field
HeaderField.HOST
: "... - getHost() - Method in interface org.refcodes.web.HostAccessor
-
Retrieves the host from the host property.
- getHost() - Method in class org.refcodes.web.Url
-
Retrieves the host from the host property.
- getHttpBody() - Method in interface org.refcodes.web.HttpBodyAccessor
-
Retrieves the HTTP body from the HTTP body property.
- getHttpBody() - Method in class org.refcodes.web.HttpClientResponse
-
Retrieves the HTTP body from the HTTP body property.
- getHttpBody() - Method in class org.refcodes.web.HttpServerRequest
-
Retrieves the HTTP body from the HTTP body property.
- getHttpInputStream() - Method in class org.refcodes.web.HttpClientResponse
-
Retrieves the
InputStream
from the HTTPInputStream
property. - getHttpInputStream() - Method in interface org.refcodes.web.HttpInputStreamAccessor
-
Retrieves the
InputStream
from the HTTPInputStream
property. - getHttpInputStream() - Method in class org.refcodes.web.HttpServerRequest
-
Retrieves the
InputStream
from the HTTPInputStream
property. - getHttpMediaType() - Method in interface org.refcodes.web.HttpMediaTypeAccessor
-
Retrieves the HTTP Media-Type from the HTTP Media-Type property.
- getHttpMethod() - Method in class org.refcodes.web.AbstractHttpRequest
-
Retrieves the HTTP-Method from the HTTP-Method property.
- getHttpMethod() - Method in class org.refcodes.web.BasicAuthRequest
-
Retrieves the HTTP-Method from the HTTP-Method property.
- getHttpMethod() - Method in interface org.refcodes.web.HttpMethodAccessor
-
Retrieves the HTTP-Method from the HTTP-Method property.
- getHttpStatusCode() - Method in class org.refcodes.web.AbstractHttpResponse
-
Retrieves the HTTP Status-Code from the HTTP Status-Code property.
- getHttpStatusCode() - Method in interface org.refcodes.web.HttpStatusCodeAccessor
-
Retrieves the HTTP Status-Code from the HTTP Status-Code property.
- getHttpSuccessCode() - Method in interface org.refcodes.web.HttpSuccessCodeAccessor
-
Retrieves the HTTP success code from the HTTP success code property.
- getIdentity() - Method in class org.refcodes.web.BasicAuthCredentials
- getIdentity() - Method in class org.refcodes.web.BasicCredentials
- getIdentity() - Method in class org.refcodes.web.Url
- getIpAddress() - Method in class org.refcodes.web.Url
- getKey() - Method in enum class org.refcodes.web.CookieAttribute
- getKeyStoreDescriptor() - Method in class org.refcodes.web.HttpServerContextBuilder
- getLoadBalancingStrategy() - Method in interface org.refcodes.web.LoadBalancingStrategyAccessor
-
Retrieves the load balancing strategy from the load balancing strategy property.
- getLocalAddress() - Method in interface org.refcodes.web.LocalAddressAccessor
-
Retrieves the local address from the local address property.
- getLocation() - Method in class org.refcodes.web.ResponseHeaderFields
-
Gets the Location Response-Header-Field
HeaderField.LOCATION
: "... - getMaxAge() - Method in class org.refcodes.web.ResponseCookie
-
Returns the Max-Age (seconds) for this cookie.
- getMaxConnections() - Method in class org.refcodes.web.HttpServerContextBuilder
- getMediaType() - Method in class org.refcodes.web.ContentType
-
Retrieves the Media-Type from the Media-Type property.
- getMediaType() - Method in interface org.refcodes.web.MediaTypeAccessor
-
Retrieves the Media-Type from the Media-Type property.
- getMediaTypes() - Method in class org.refcodes.web.FormMediaTypeFactory
-
Retrieves the Media-Types from the Media-Types property.
- getMediaTypes() - Method in class org.refcodes.web.HtmlMediaTypeFactory
-
Retrieves the Media-Types from the Media-Types property.
- getMediaTypes() - Method in class org.refcodes.web.JsonMediaTypeFactory
-
Retrieves the Media-Types from the Media-Types property.
- getMediaTypes() - Method in interface org.refcodes.web.MediaTypesAccessor
-
Retrieves the Media-Types from the Media-Types property.
- getMediaTypes() - Method in class org.refcodes.web.TextMediaTypeFactory
-
Retrieves the Media-Types from the Media-Types property.
- getMediaTypes() - Method in class org.refcodes.web.XmlMediaTypeFactory
-
Retrieves the Media-Types from the Media-Types property.
- getMediaTypes() - Method in class org.refcodes.web.YamlMediaTypeFactory
-
Retrieves the Media-Types from the Media-Types property.
- getName() - Method in enum class org.refcodes.web.AuthType
-
Gets the name.
- getName() - Method in enum class org.refcodes.web.ContentEncoding
-
Gets the name.
- getName() - Method in enum class org.refcodes.web.HeaderField
- getName() - Method in enum class org.refcodes.web.MediaType
-
Returns the sub-type part of the
MediaType
. - getName() - Method in enum class org.refcodes.web.MediaTypeParameter
-
Gets the name.
- getName() - Method in enum class org.refcodes.web.OauthField
-
Returns the field's name, be it a
HeaderFields
or aFormFields
entry. - getName() - Method in enum class org.refcodes.web.TokenType
-
Gets the name.
- getName() - Method in enum class org.refcodes.web.TopLevelType
-
Gets the name.
- getNotBeforePolicy() - Method in class org.refcodes.web.OauthToken
-
Returns the not-before-policy.
- getOauthToken() - Method in interface org.refcodes.web.OauthTokenAccessor
-
Retrieves the OAuth token from the OAuth token property
- getPath() - Method in enum class org.refcodes.web.OauthField
- getPath() - Method in class org.refcodes.web.ResponseCookie
- getPath() - Method in class org.refcodes.web.Url
- getPatternArguments() - Method in exception org.refcodes.web.HttpStatusException
- getPatternArguments() - Method in exception org.refcodes.web.HttpStatusRuntimeException
- getPort() - Method in class org.refcodes.web.HttpServerContextBuilder
- getPort() - Method in class org.refcodes.web.Url
- getQueryFields() - Method in interface org.refcodes.web.QueryFieldsAccessor
-
Retrieves the request Query-Fields from the request Query-Fields property.
- getQueryFields() - Method in class org.refcodes.web.Url
-
Retrieves the request Query-Fields from the request Query-Fields property.
- getRealm() - Method in interface org.refcodes.web.RealmAccessor
-
Retrieves the realm from the realm property.
- getRedirectDepth() - Method in class org.refcodes.web.HttpClientRequest
-
Retrieves the redirect depth from the redirect depth property.
- getRedirectDepth() - Method in interface org.refcodes.web.RedirectDepthAccessor
-
Retrieves the redirect depth from the redirect depth property.
- getRefreshExpiresIn() - Method in class org.refcodes.web.OauthToken
-
Returns the time in seconds till the refresh token (
OauthToken.getRefreshToken()
) expires. - getRefreshToken() - Method in class org.refcodes.web.OauthToken
-
Returns the refresh token.
- getRemoteAddress() - Method in interface org.refcodes.web.RemoteAddressAccessor
-
Retrieves the remote address from the remote address property.
- getRequest() - Method in class org.refcodes.web.HttpClientRequest
-
Retrieves the request from the request property.
- getRequest() - Method in class org.refcodes.web.HttpServerRequest
-
Retrieves the
HttpBodyMap
representing the request body. - getRequest(Class<REQ>) - Method in class org.refcodes.web.HttpServerRequest
-
This method's implementation supports the
HttpBodyMap
to unmarshal an HTTP Request-Body into anHttpBodyMap
when providing theHttpBodyMap
as request type. - getRequestHeaderFields() - Method in interface org.refcodes.web.RequestHeaderFieldsAccessor
-
Retrieves the request Header-Fields from the request Header-Fields property.
- getRequestId() - Method in interface org.refcodes.web.HeaderFields
-
Gets the (interprocess) Request-Correlation TID field
HeaderField.REQUEST_ID
: A Request-Correlation TID is an TID to uniquely identify an entity (request) across multiple systems. - getResponse() - Method in class org.refcodes.web.HttpClientResponse
-
Retrieves the
HttpBodyMap
representing the response body. - getResponse() - Method in class org.refcodes.web.HttpServerResponse
-
Retrieves the response from the response property.
- getResponse(Class<RES>) - Method in class org.refcodes.web.HttpClientResponse
-
This method's implementation supports the
HttpBodyMap
to unmarshal an HTTP Response-Body into anHttpBodyMap
when providing theHttpBodyMap
as response type. - getResponseHeaderFields() - Method in interface org.refcodes.web.ResponseHeaderFieldsAccessor
-
Retrieves the response Header-Fields from the response Header-Fields property.
- getScheme() - Method in class org.refcodes.web.HttpServerContextBuilder
-
Retrieves the UrlScheme from the URL scheme.
- getScheme() - Method in interface org.refcodes.web.SchemeAccessor
-
Retrieves the UrlScheme from the URL scheme.
- getScheme() - Method in class org.refcodes.web.Url
-
Retrieves the UrlScheme from the URL scheme.
- getScope() - Method in class org.refcodes.web.OauthToken
-
Returns the OAuth scope.
- getSecret() - Method in class org.refcodes.web.BasicAuthCredentials
- getSecret() - Method in class org.refcodes.web.BasicCredentials
- getSecret() - Method in class org.refcodes.web.Url
- getSessionId() - Method in interface org.refcodes.web.HeaderFields
-
Gets the (interprocess) Session-Correlation TID field
HeaderField.SESSION_ID
: A Session-Correlation TID is an TID to uniquely identify an entity (session) across multiple systems. - getSessionState() - Method in class org.refcodes.web.OauthToken
-
Returns the session state.
- getStatusAlias() - Method in class org.refcodes.web.HttpBodyMap
-
Retrieves the public path's ("status/alias") status alias.
- getStatusCode() - Method in class org.refcodes.web.HttpBodyMap
-
Retrieves the public path's ("status/code") status code.
- getStatusCode() - Method in enum class org.refcodes.web.HttpStatusCode
- getStatusCode() - Method in exception org.refcodes.web.HttpStatusException
- getStatusCode() - Method in exception org.refcodes.web.HttpStatusRuntimeException
- getStatusCode() - Method in enum class org.refcodes.web.HttpSuccessCode
- getStatusException() - Method in class org.refcodes.web.HttpBodyMap
-
Retrieves the public path's ("status/exception") status exception.
- getStatusMessage() - Method in class org.refcodes.web.HttpBodyMap
-
Retrieves the public path's ("status/aMessage") status aMessage.
- getStatusTimeStamp() - Method in class org.refcodes.web.HttpBodyMap
-
Retrieves the public path's ("status/Time-Stamp") status Time-Stamp.
- getToken() - Method in class org.refcodes.web.BearerAuthCredentials
- getTokenType() - Method in class org.refcodes.web.OauthToken
-
Returns the token type.
- getTopLevelType() - Method in class org.refcodes.web.ContentType
-
Retrieves the Media-Top-Level-Type from the Media-Top-Level-Type property.
- getTopLevelType() - Method in enum class org.refcodes.web.MediaType
-
Retrieves the Media-Top-Level-Type from the Media-Top-Level-Type property.
- getTopLevelType() - Method in interface org.refcodes.web.TopLevelTypeAccessor
-
Retrieves the Media-Top-Level-Type from the Media-Top-Level-Type property.
- getTrustStoreDescriptor() - Method in class org.refcodes.web.HttpClientContextBuilder
- getUnknownAcceptTypes() - Method in interface org.refcodes.web.HeaderFields
-
Gets the unresolvable (unknown) Accept request-Header-Field
HeaderField.ACCEPT
. - getUnknownContentTypes() - Method in interface org.refcodes.web.HeaderFields
-
Gets the unresolvable (unknown) Content-Type request-Header-Field
HeaderField.CONTENT_TYPE
. - getUrl() - Method in class org.refcodes.web.AbstractHttpRequest
- getUrl() - Method in class org.refcodes.web.BasicAuthRequest
- getUrl() - Method in class org.refcodes.web.HttpClientResponse
- getUrl() - Method in exception org.refcodes.web.HttpStatusException
- getUrl() - Method in exception org.refcodes.web.HttpStatusRuntimeException
- getUrl() - Method in interface org.refcodes.web.UrlAccessor
- getUserAgent() - Method in interface org.refcodes.web.HeaderFields
-
Gets the User-Agent request-Header-Field
HeaderField.USER_AGENT
: "... - getUserAgent() - Method in interface org.refcodes.web.UserAgentAccessor
-
Retrieves the user agent from the user agent property.
- getValue() - Method in enum class org.refcodes.web.GrantType
-
Returns the value representing the given
GrantType
. - getVersion() - Method in class org.refcodes.web.ResponseCookie
-
Returns the version this cookie.
- getVirtualHost() - Method in interface org.refcodes.web.VirtualHostAccessor
-
Retrieves the virtual host from the virtual host property.
- GONE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
410 Gone (HTTP/1.1 - RFC 2616)
- GoneException - Exception in org.refcodes.web
-
The Class GoneException.
- GoneException(String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, Throwable) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, Throwable, String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, Url) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, Url, String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, Url, Throwable) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(Throwable) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(Throwable, String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(Url, Throwable) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneException(Url, Throwable, String) - Constructor for exception org.refcodes.web.GoneException
-
Instantiates a new according exception.
- GoneRuntimeException - Exception in org.refcodes.web
-
The Class GoneRuntimeException.
- GoneRuntimeException(String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, Url) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(Throwable) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GoneRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.GoneRuntimeException
-
Instantiates a new according exception.
- GRANT_TYPE - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth, it must be set to
GrantType.AUTHORIZATION_CODE
: "... - GRANT_TYPE - Enum constant in enum class org.refcodes.web.OauthField
-
Must be set to
GrantType.AUTHORIZATION_CODE
. "... grant_type REQUIRED. - GrantType - Enum Class in org.refcodes.web
-
The
GrantType
enumerations. - GZIP - Enum constant in enum class org.refcodes.web.ContentEncoding
H
- hashCode() - Method in class org.refcodes.web.BasicAuthCredentials
- hashCode() - Method in class org.refcodes.web.BearerAuthCredentials
- hashCode() - Method in class org.refcodes.web.ContentType
- hasHttpInterceptor(I) - Method in interface org.refcodes.web.HttpInterceptable
-
Tests whether the given
HttpInterceptor
instance has been added. - hasHttpInterceptor(HttpClientInterceptor) - Method in interface org.refcodes.web.HttpClientInterceptable
-
Tests whether the given
HttpClientInterceptor
instance has been added. - hasHttpInterceptor(HttpServerInterceptor) - Method in interface org.refcodes.web.HttpServerInterceptable
-
Tests whether the given
HttpServerInterceptor
instance has been added. - hasMediaTypeFactory(MediaType) - Method in interface org.refcodes.web.MediaTypeFactoryLookup
-
Determines whether there is a
MediaTypeFactory
for the givenMediaType
. - hasPostHttpInterceptor(I) - Method in interface org.refcodes.web.PostHttpInterceptable
-
Tests whether the given
PostHttpInterceptor
instance has been added. - hasPreHttpInterceptor(I) - Method in interface org.refcodes.web.PreHttpInterceptable
-
Tests whether the given
PreHttpInterceptor
instance has been added. - hasStatusAlias() - Method in class org.refcodes.web.HttpBodyMap
-
Determines whether a public path's ("status/alias") status alias exists.
- hasStatusCode() - Method in class org.refcodes.web.HttpBodyMap
-
Determines whether a public path's ("status/code") status code exists.
- hasStatusException() - Method in class org.refcodes.web.HttpBodyMap
-
Determines whether a public path's ("status/exception") status exception exists.
- hasStatusMessage() - Method in class org.refcodes.web.HttpBodyMap
-
Determines whether a public path's ("status/aMessage") status aMessage exists.
- hasStatusTimeStamp() - Method in class org.refcodes.web.HttpBodyMap
-
Determines whether a public path's ("status/Time-Stamp") status Time-Stamp in milliseconds exists.
- HEAD - Enum constant in enum class org.refcodes.web.HttpMethod
- HeaderField - Enum Class in org.refcodes.web
-
The Enum HeaderField.
- HeaderFieldAccessor - Interface in org.refcodes.web
-
Provides an accessor for a
HeaderField
property. - HeaderFieldAccessor.HeaderFieldBuilder<B extends HeaderFieldAccessor.HeaderFieldBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a
HeaderField
property returning the builder for applying multiple build operations. - HeaderFieldAccessor.HeaderFieldMutator - Interface in org.refcodes.web
-
Provides a mutator for a
HeaderField
property. - HeaderFieldAccessor.HeaderFieldProperty - Interface in org.refcodes.web
-
Provides a
HeaderField
property. - HeaderFields<C extends Cookie,
B extends HeaderFields<C, B>> - Interface in org.refcodes.web -
The
HeaderFields
reflect the structure of a HTTP header and may be used to represent a HTTP header. - HeaderFieldsAccessor<T extends HeaderFields<?,
?>> - Interface in org.refcodes.web -
Provides an accessor for an Header-Fields property.
- HeaderFieldsAccessor.HeaderFieldsBuilder<T extends HeaderFields<?,
?>, B extends HeaderFieldsAccessor.HeaderFieldsBuilder<T, B>> - Interface in org.refcodes.web -
Provides a mutator for an Header-Fields property.
- HeaderFieldsAccessor.HeaderFieldsMutator<T extends HeaderFields<?,
?>> - Interface in org.refcodes.web -
Provides a mutator for an Header-Fields property.
- HeaderFieldsAccessor.HeaderFieldsProperty<T extends HeaderFields<?,
?>> - Interface in org.refcodes.web -
Provides an Header-Fields property.
- HOST - Enum constant in enum class org.refcodes.web.HeaderField
- HostAccessor - Interface in org.refcodes.web
-
Provides an accessor for a host property.
- HostAccessor.HostBuilder<B extends HostAccessor.HostBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for an host property.
- HostAccessor.HostMutator - Interface in org.refcodes.web
-
Provides a mutator for a host property.
- HostAccessor.HostProperty - Interface in org.refcodes.web
-
Provides a host property.
- HtmlMediaTypeFactory - Class in org.refcodes.web
-
Implements the
MediaTypeFactory
for Media-Type "application/YAML" (MediaType.APPLICATION_YAML
). - HtmlMediaTypeFactory() - Constructor for class org.refcodes.web.HtmlMediaTypeFactory
- HTTP - Enum constant in enum class org.refcodes.web.Proxy
- HTTP_VERSION_NOT_SUPPORTED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
505 HTTP Version Not Supported (HTTP/1.1 - RFC 2616)
- HttpBodyAccessor - Interface in org.refcodes.web
-
Provides an accessor for a HTTP body property.
- HttpBodyAccessor.HttpBodyBuilder<B extends HttpBodyAccessor.HttpBodyBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder body for a HTTP body property returning the builder for applying multiple build operations.
- HttpBodyAccessor.HttpBodyMutator - Interface in org.refcodes.web
-
Provides a mutator for a HTTP body property.
- HttpBodyAccessor.HttpBodyProperty - Interface in org.refcodes.web
-
Provides a HTTP body property.
- HttpBodyAccessor.HttpBodyProvider<EXC extends Exception> - Interface in org.refcodes.web
-
A provider interface provides a "toSomething(?)"
- HttpBodyMap - Class in org.refcodes.web
-
The
HttpBodyMap
type is a "dynamic" type in terms of it's structure being represented by paths'. - HttpBodyMap() - Constructor for class org.refcodes.web.HttpBodyMap
-
Create an empty
HttpBodyMap
instance using the public path delimiter "/" (Delimiter.PATH
) for the path declarations. - HttpBodyMap(Object) - Constructor for class org.refcodes.web.HttpBodyMap
-
Create a
HttpBodyMap
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the public path delimiter "/" (Delimiter.PATH
) for the path declarations. - HttpBodyMap(Object, String) - Constructor for class org.refcodes.web.HttpBodyMap
-
Creates a
HttpBodyMap
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the public path delimiter "/" (Delimiter.PATH
) for the path declarations. - HttpBodyMap(String, Object) - Constructor for class org.refcodes.web.HttpBodyMap
-
Create a
HttpBodyMap
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the public path delimiter "/" (Delimiter.PATH
) for the path declarations. - HttpBodyMap(String, Object, String) - Constructor for class org.refcodes.web.HttpBodyMap
-
Creates a
HttpBodyMap
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the public path delimiter "/" (Delimiter.PATH
for the path declarations. - HttpClientContext - Interface in org.refcodes.web
-
This context describes all information required to open a client (HTTP or HTTPS).
- HttpClientContextBuilder - Class in org.refcodes.web
-
The
HttpClientContextBuilder
implements theHttpClientContextBuilder
interface. - HttpClientContextBuilder() - Constructor for class org.refcodes.web.HttpClientContextBuilder
-
Constructs a
HttpClientContext
. - HttpClientContextBuilder(Url, TrustStoreDescriptor) - Constructor for class org.refcodes.web.HttpClientContextBuilder
-
Constructs a
HttpClientContext
with the given data. - HttpClientInterceptable - Interface in org.refcodes.web
-
The
HttpClientInterceptable
provides base functionality for working withHttpClientInterceptor
instances using thePreHttpClientInterceptable
as well as thePostHttpClientInterceptable
definitions. - HttpClientInterceptor - Interface in org.refcodes.web
-
An
HttpClientInterceptor
definition for pre- as well as post-processingHttpClientRequest
as well asHttpClientResponse
instances. - HttpClientRequest - Class in org.refcodes.web
-
Defines a
HttpClientRequest
being the request as produced by the client. - HttpClientRequest(HttpMethod, Url, int, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientRequest
-
Instantiates a new http client request impl.
- HttpClientRequest(HttpMethod, Url, Object, int, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientRequest
-
Instantiates a new http client request impl.
- HttpClientRequest(HttpMethod, Url, Object, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientRequest
-
Instantiates a new http client request impl.
- HttpClientRequest(HttpMethod, Url, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientRequest
-
Instantiates a new http client request impl.
- HttpClientRequest(HttpMethod, Url, RequestHeaderFields, Object, int, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientRequest
-
Instantiates a new http client request impl.
- HttpClientRequest(HttpMethod, Url, RequestHeaderFields, Object, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientRequest
-
Instantiates a new http client request impl.
- HttpClientResponse - Class in org.refcodes.web
-
Defines a
HttpClientResponse
being the response as consumed by the client. - HttpClientResponse(Url, HttpStatusCode, ResponseHeaderFields, InputStream, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientResponse
-
Constructs a
HttpClientResponse
with all required attributes. - HttpClientResponse(Url, ResponseHeaderFields, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpClientResponse
-
Constructs a
HttpClientResponse
with all available attributes. - HttpException - Exception in org.refcodes.web
-
Base exception HTTP related problems.
- HttpException(String) - Constructor for exception org.refcodes.web.HttpException
- HttpException(String, String) - Constructor for exception org.refcodes.web.HttpException
- HttpException(String, Throwable) - Constructor for exception org.refcodes.web.HttpException
- HttpException(String, Throwable, String) - Constructor for exception org.refcodes.web.HttpException
- HttpException(Throwable) - Constructor for exception org.refcodes.web.HttpException
- HttpException(Throwable, String) - Constructor for exception org.refcodes.web.HttpException
- HttpFields<B extends HttpFields<B>> - Interface in org.refcodes.web
-
Various key/value "collections" we run across when we develop HTTP based applications may have more then one value for one key.
- HttpInputStreamAccessor - Interface in org.refcodes.web
-
Provides an accessor for a HTTP
InputStream
body property. - HttpInputStreamAccessor.HttpInputStreamBuilder<B extends HttpInputStreamAccessor.HttpInputStreamBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder body for a HTTP
InputStream
property returning the builder for applying multiple build operations. - HttpInputStreamAccessor.HttpInputStreamMutator - Interface in org.refcodes.web
-
Provides a mutator for a
InputStream
property. - HttpInputStreamAccessor.HttpInputStreamProperty - Interface in org.refcodes.web
-
Provides a HTTP
InputStream
property. - HttpInputStreamAccessor.HttpInputStreamProvider<EXC extends Exception> - Interface in org.refcodes.web
-
A provider interface provides a "toSomething(?)"
- HttpInterceptable<I extends HttpInterceptor<?,
?>> - Interface in org.refcodes.web -
The
HttpInterceptable
provides base functionality for working withHttpInterceptor
instances using thePreHttpInterceptable
as well as thePostHttpInterceptable
definitions. - HttpInterceptor<REQ extends HttpRequest,
RES extends HttpResponse> - Interface in org.refcodes.web -
An
HttpInterceptor
definition for pre- as well as post-processingHttpRequest
as well asHttpResponse
instances. - HttpMediaType - Interface in org.refcodes.web
-
The
HttpMediaType
converts an implementing instance's state into an HTTP media type as used in HTTP Header-Fields. - HttpMediaTypeAccessor - Interface in org.refcodes.web
-
Provides an accessor for a HTTP Media-Type property.
- HttpMediaTypeAccessor.HttpMediaTypeBuilder<B extends HttpMediaTypeAccessor.HttpMediaTypeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder body for a HTTP Media-Type property returning the builder for applying multiple build operations.
- HttpMediaTypeAccessor.HttpMediaTypeMutator - Interface in org.refcodes.web
-
Provides a mutator for a HTTP Media-Type property.
- HttpMediaTypeAccessor.HttpMediaTypeProperty - Interface in org.refcodes.web
-
Provides a HTTP Media-Type property.
- HttpMediaTypeAccessor.HttpMediaTypeProvider<EXC extends Exception> - Interface in org.refcodes.web
-
A provider interface provides a "toSomething(?)"
- HttpMethod - Enum Class in org.refcodes.web
-
The Enum HttpMethod.
- HttpMethodAccessor - Interface in org.refcodes.web
-
Provides an accessor for a HTTP-Method property.
- HttpMethodAccessor.HttpMethodBuilder<B extends HttpMethodAccessor.HttpMethodBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a HTTP-Method property returning the builder for applying multiple build operations.
- HttpMethodAccessor.HttpMethodMutator - Interface in org.refcodes.web
-
Provides a mutator for a HTTP-Method property.
- HttpMethodAccessor.HttpMethodProperty - Interface in org.refcodes.web
-
Provides a HTTP-Method property.
- HTTPONLY - Enum constant in enum class org.refcodes.web.CookieAttribute
- HttpRequest - Interface in org.refcodes.web
-
Defines a HTTP-Request, being the
HttpMethod
, the Header-Fields and the locator representing, though without the request body. - HttpRequestBuilder<B extends HttpRequestBuilder<B>> - Interface in org.refcodes.web
-
The Interface HttpRequestBuilder.
- HttpResponse - Interface in org.refcodes.web
-
Defines a
HttpResponse
being the response Header-Fields and the response body. - HttpResponseBuilder<B> - Interface in org.refcodes.web
-
The Interface HttpResponseBuilder.
- HttpResponseException - Exception in org.refcodes.web
-
Thrown by a HTTP-Response handling system in case of some unexpected response.
- HttpResponseException(String, HttpStatusCode) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, Url) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, Url, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(String, HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(Throwable, HttpStatusCode) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(Throwable, HttpStatusCode, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseException(HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseException
- HttpResponseRuntimeException - Exception in org.refcodes.web
-
Thrown by a HTTP-Response handling system in case of some unexpected response.
- HttpResponseRuntimeException(String, HttpStatusCode) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, Url) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, Url, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(String, HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(Throwable, HttpStatusCode) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(Throwable, HttpStatusCode, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpResponseRuntimeException(HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpResponseRuntimeException
- HttpRuntimeException - Exception in org.refcodes.web
-
The Class HttpRuntimeException.
- HttpRuntimeException(String) - Constructor for exception org.refcodes.web.HttpRuntimeException
- HttpRuntimeException(String, String) - Constructor for exception org.refcodes.web.HttpRuntimeException
- HttpRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.HttpRuntimeException
- HttpRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.HttpRuntimeException
- HttpRuntimeException(Throwable) - Constructor for exception org.refcodes.web.HttpRuntimeException
- HttpRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.HttpRuntimeException
- HTTPS - Enum constant in enum class org.refcodes.web.Proxy
- HttpsConnectionRequestObservable<B extends HttpsConnectionRequestObservable<B>> - Interface in org.refcodes.web
-
An observable which notifies the registered
HttpsConnectionRequestObserver
on incoming HTTPS requests. - HttpsConnectionRequestObserver - Interface in org.refcodes.web
-
An observer being notified by incoming HTTPS requests which might have been registered via
HttpsConnectionRequestObservable.onConnectionRequest(HttpsConnectionRequestObserver)
possibly using lambda syntax. - HttpServerContext - Interface in org.refcodes.web
-
This context describes all information required to open a server (HTTP or HTTPS) and bind a port.
- HttpServerContextBuilder - Class in org.refcodes.web
-
The
HttpServerContextBuilder
implements theHttpServerContext
interface extending it with builder functionality.. - HttpServerContextBuilder() - Constructor for class org.refcodes.web.HttpServerContextBuilder
-
Constructs a
HttpClientContext
with a default schemeScheme.HTTP
for port 8080. - HttpServerContextBuilder(int) - Constructor for class org.refcodes.web.HttpServerContextBuilder
-
Constructs a
HttpClientContext
with a default scheme. - HttpServerContextBuilder(String, int) - Constructor for class org.refcodes.web.HttpServerContextBuilder
-
Constructs a
HttpClientContext
with a default scheme. - HttpServerContextBuilder(String, int, KeyStoreDescriptor, int) - Constructor for class org.refcodes.web.HttpServerContextBuilder
-
Constructs a
HttpClientContext
with the given data. - HttpServerContextBuilder(Scheme, int) - Constructor for class org.refcodes.web.HttpServerContextBuilder
-
Constructs a
HttpClientContext
with a default scheme. - HttpServerContextBuilder(Scheme, int, KeyStoreDescriptor, int) - Constructor for class org.refcodes.web.HttpServerContextBuilder
-
Constructs a
HttpClientContext
with the given data. - HttpServerInterceptable - Interface in org.refcodes.web
-
The
HttpServerInterceptable
provides base functionality for working withHttpServerInterceptor
instances using thePreHttpServerInterceptable
as well as thePostHttpServerInterceptable
definitions. - HttpServerInterceptor - Interface in org.refcodes.web
-
An
HttpServerInterceptor
definition for pre- as well as post-processingHttpServerRequest
as well asHttpServerResponse
instances. - HttpServerRequest - Class in org.refcodes.web
-
Defines a
HttpServerRequest
being the request as consumed by the server. - HttpServerRequest(HttpMethod, Url, RequestHeaderFields, InputStream, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpServerRequest
-
Constructs a
HttpServerRequest
with all required attributes. - HttpServerResponse - Class in org.refcodes.web
-
Defines a
HttpServerResponse
as produced by the server. - HttpServerResponse(HttpStatusCode, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpServerResponse
-
Instantiates a new http server response impl.
- HttpServerResponse(MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpServerResponse
-
Instantiates a new http server response impl.
- HttpServerResponse(ResponseHeaderFields, MediaTypeFactoryLookup) - Constructor for class org.refcodes.web.HttpServerResponse
-
Instantiates a new http server response impl.
- HttpStatusCode - Enum Class in org.refcodes.web
-
The org.apache.commons.httpclient.HttpStatus constants as enumeration.
- HttpStatusCodeAccessor - Interface in org.refcodes.web
-
Provides access to a HTTP Status-Code property including all known HTTP HTTP Status-Codes (success as well as error codes) as of
HttpStatusCode
. - HttpStatusCodeAccessor.HttpStatusCodeBuilder<B extends HttpStatusCodeAccessor.HttpStatusCodeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a HTTP Status-Code property returning the builder for applying multiple build operations.
- HttpStatusCodeAccessor.HttpStatusCodeMutator - Interface in org.refcodes.web
-
Extends the
HttpStatusCodeAccessor
with a setter method. - HttpStatusCodeAccessor.HttpStatusCodeProperty - Interface in org.refcodes.web
-
Extends the
HttpStatusCodeAccessor
with a setter method. - HttpStatusException - Exception in org.refcodes.web
-
Base HTTP exception, thrown in case of HTTP status code related exceptions (e.g. as of a HTTP response was of an erroneous status).
- HttpStatusException(String, HttpStatusCode) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, String) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, Url) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, Url, String) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(String, HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusException(HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusException
- HttpStatusRuntimeException - Exception in org.refcodes.web
-
The Class
HttpStatusRuntimeException
. - HttpStatusRuntimeException(String, HttpStatusCode) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, String) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, Url) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, Url, String) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(String, HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(HttpStatusCode, Throwable) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(HttpStatusCode, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(HttpStatusCode, Url, Throwable) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpStatusRuntimeException(HttpStatusCode, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpStatusRuntimeException
- HttpSuccessCode - Enum Class in org.refcodes.web
-
Only the Success 2xx codes as of (from) the
HttpStatusCode
enumeration. - HttpSuccessCodeAccessor - Interface in org.refcodes.web
-
Provides access to a HTTP success code property including just the 2xx HTTP success codes as of
HttpSuccessCode
excluding all HTTP error codes. - HttpSuccessCodeAccessor.HttpSuccessCodeBuilder<B extends HttpSuccessCodeAccessor.HttpSuccessCodeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a HTTP success code property returning the builder for applying multiple build operations.
- HttpSuccessCodeAccessor.HttpSuccessCodeMutator - Interface in org.refcodes.web
-
Extends the
HttpSuccessCodeAccessor
with a setter method. - HttpSuccessCodeAccessor.HttpSuccessCodeProperty - Interface in org.refcodes.web
-
Extends the
HttpSuccessCodeAccessor
with a setter method. - HttpVersionNotSupportedException - Exception in org.refcodes.web
-
The Class HttpVersionNotSupportedException.
- HttpVersionNotSupportedException(String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, Url) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, Url, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(Url, Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException - Exception in org.refcodes.web
-
The Class HttpVersionNotSupportedRuntimeException.
- HttpVersionNotSupportedRuntimeException(String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- HttpVersionNotSupportedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.HttpVersionNotSupportedRuntimeException
-
Instantiates a new according exception.
I
- IDENTITY - Enum constant in enum class org.refcodes.web.ContentEncoding
- IMAGE - Enum constant in enum class org.refcodes.web.TopLevelType
- IMAGE_BMP - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_CGM - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_DICOM_RLE - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_EMF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_FITS - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_G3FAX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_JLS - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_JP2 - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_JPM - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_JPX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_NAPLPS - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_PNG - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_PRS_BTIF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_PRS_PTI - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_PWG_RASTER - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_T38 - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_TIFF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_TIFF_FX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_ADOBE_PHOTOSHOP - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_AIRZIP_ACCELERATOR_AZV - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_CNS_INF2 - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_DECE_GRAPHIC - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_DJVU - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_DVB_SUBTITLE - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_DWG - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_DXF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_FASTBIDSHEET - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_FPX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_FST - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_FUJIXEROX_EDMICS_MMR - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_FUJIXEROX_EDMICS_RLC - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_GLOBALGRAPHICS_PGB - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_MICROSOFT_ICON - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_MIX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_MOZILLA_APNG - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_MS_MODI - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_NET_FPX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_RADIANCE - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_SEALED_PNG - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_SEALEDMEDIA_SOFTSEAL_GIF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_SEALEDMEDIA_SOFTSEAL_JPG - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_SVF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_TENCENT_TAP - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_VALVE_SOURCE_TEXTURE - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_WAP_WBMP - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_XIFF - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_VND_ZBRUSH_PCX - Enum constant in enum class org.refcodes.web.MediaType
- IMAGE_WMF - Enum constant in enum class org.refcodes.web.MediaType
- IMPLICIT - Enum constant in enum class org.refcodes.web.GrantType
-
Implicit "
implicit
" Grant (specification conforming grant). - initialize() - Method in enum class org.refcodes.web.Proxy
-
Initializes the proxy from the settings of the environment variables if non according proxy settings are found in the system properties.
- initializeAll() - Static method in enum class org.refcodes.web.Proxy
-
Initializes the proxy for all proxy enumeration elements, e.g. calls
Proxy.initialize()
on each element in this enumeration. - INSUFFICIENT_SPACE_ON_RESOURCE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
419 Insufficient Space on Resource (WebDAV - draft-ietf-webdav-protocol-05?)
- INSUFFICIENT_STORAGE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
507 Insufficient Storage (WebDAV - RFC 2518).
- InsufficientSpaceOnResourceException - Exception in org.refcodes.web
-
The Class InsufficientSpaceOnResourceException.
- InsufficientSpaceOnResourceException(String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, Url) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, Url, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException - Exception in org.refcodes.web
-
The Class InsufficientSpaceOnResourceRuntimeException.
- InsufficientSpaceOnResourceRuntimeException(String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, Url) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientSpaceOnResourceRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientSpaceOnResourceRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageException - Exception in org.refcodes.web
-
The Class InsufficientStorageException.
- InsufficientStorageException(String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, Url) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, Url, String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException - Exception in org.refcodes.web
-
The Class InsufficientStorageRuntimeException.
- InsufficientStorageRuntimeException(String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, Url) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- InsufficientStorageRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InsufficientStorageRuntimeException
-
Instantiates a new according exception.
- INTERNAL_CLIENT_ERROR - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- INTERNAL_SERVER_ERROR - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
500 Server Error (HTTP/1.0 - RFC 1945)
- InternalClientErrorException - Exception in org.refcodes.web
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- InternalClientErrorException(String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, Url) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, Url, String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(Url, Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException - Exception in org.refcodes.web
-
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally).
- InternalClientErrorRuntimeException(String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, Url) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalClientErrorRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalClientErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorException - Exception in org.refcodes.web
-
The Class InternalServerErrorException.
- InternalServerErrorException(String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, Url) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, Url, String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(Url, Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException - Exception in org.refcodes.web
-
The Class InternalServerErrorRuntimeException.
- InternalServerErrorRuntimeException(String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, Url) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- InternalServerErrorRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.InternalServerErrorRuntimeException
-
Instantiates a new according exception.
- isClientErrorStatus() - Method in enum class org.refcodes.web.HttpStatusCode
-
Determines whether the given HTTP Status-Code signals a client side error.
- isCommaSeparatedHeaderField(String) - Static method in class org.refcodes.web.AbstractHeaderFields
-
Tests the given HTTP Header-Field name whether it holds a comma separated value.
- isErrorStatus() - Method in enum class org.refcodes.web.HttpStatusCode
-
Determines whether the given HTTP Status-Code signals a failure.
- isHttpOnly() - Method in class org.refcodes.web.ResponseCookie
-
Returns true if we have an HTTP only cookie.
- isRedirectStatus() - Method in enum class org.refcodes.web.HttpStatusCode
-
Determines whether the given HTTP Status-Code signals a redirect.
- isSecure() - Method in class org.refcodes.web.ResponseCookie
-
Returns true if we have a secure HTTP cookie.
- isServerErrorStatus() - Method in enum class org.refcodes.web.HttpStatusCode
-
Determines whether the given HTTP Status-Code signals a server side error.
- isSuccessStatus() - Method in enum class org.refcodes.web.HttpStatusCode
-
Determines whether the given HTTP Status-Code signals a success.
- isValid() - Method in class org.refcodes.web.OauthToken
- isValid(String) - Method in interface org.refcodes.web.TokenCredentials
-
Validates the provided user-name and secret against this
TokenCredentials
user-name and secret. - isValid(String, String) - Method in class org.refcodes.web.BasicCredentials
-
Validates the provided user-name and secret against this
BasicCredentials
user-name and secret. - isValid(BasicCredentials) - Method in class org.refcodes.web.BasicCredentials
-
Validates the provided
BasicCredentials
against thisBasicCredentials
user-name and secret. - isValid(TokenCredentials) - Method in interface org.refcodes.web.TokenCredentials
-
Validates the provided
TokenCredentials
against thisTokenCredentials
user-name and secret.
J
- JsonMediaTypeFactory - Class in org.refcodes.web
-
Implements the
MediaTypeFactory
for Media-Type "application/json" (MediaType.APPLICATION_JSON
). - JsonMediaTypeFactory() - Constructor for class org.refcodes.web.JsonMediaTypeFactory
-
Constructs the
JsonMediaTypeFactory
. - JWT_BEARER - Enum constant in enum class org.refcodes.web.GrantType
-
Use JWT Bearer (JWT Bearer "
urn:ietf:params:oauth:grant-type:jwt-bearer
" Grant)
K
- keySet() - Method in class org.refcodes.web.AbstractHeaderFields
L
- LAST_MODIFIED - Enum constant in enum class org.refcodes.web.HeaderField
- LENGTH_REQUIRED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
411 Length Required (HTTP/1.1 - RFC 2616)
- LengthRequiredException - Exception in org.refcodes.web
-
The Class LengthRequiredException.
- LengthRequiredException(String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, Throwable) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, Url) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, Url, String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, Url, Throwable) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(Throwable) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(Url, Throwable) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredException(Url, Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException - Exception in org.refcodes.web
-
The Class LengthRequiredRuntimeException.
- LengthRequiredRuntimeException(String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, Url) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(Throwable) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- LengthRequiredRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.LengthRequiredRuntimeException
-
Instantiates a new according exception.
- letAuthType(AuthType) - Method in interface org.refcodes.web.AuthTypeAccessor.AuthTypeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
AuthType
(setter) as ofAuthTypeAccessor.AuthTypeMutator.setAuthType(AuthType)
and returns the very same value (getter). - letBaseLocator(String) - Method in interface org.refcodes.web.BaseLocatorAccessor.BaseLocatorProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofBaseLocatorAccessor.BaseLocatorMutator.setBaseLocator(String)
and returns the very same value (getter). - letBaseUrl(String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs.
- letBaseUrl(String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
URL
) the given arguments, which is very useful for builder APIs. - letBaseUrl(String, String, int) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
URL
) the given arguments, which is very useful for builder APIs. - letBaseUrl(String, String, int, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
URL
) the given arguments, which is very useful for builder APIs. - letBaseUrl(String, String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
URL
) the given arguments, which is very useful for builder APIs. - letBaseUrl(URL) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through the given arguments, which is very useful for builder APIs.
- letBaseUrl(Scheme, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
Url
) the given arguments, which is very useful for builder APIs. - letBaseUrl(Scheme, String, int) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
Url
) the given arguments, which is very useful for builder APIs. - letBaseUrl(Scheme, String, int, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
URL
) the given arguments, which is very useful for builder APIs. - letBaseUrl(Scheme, String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through (being produced to an
Url
) the given arguments, which is very useful for builder APIs. - letBaseUrl(Url) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs.
- letBasicAuthCredentials(String, String) - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor.BasicAuthCredentialsProperty
-
This method stores and passes through the given arguments, which is very useful for builder APIs:Sets the
BasicAuthCredentials
from the user name and the secret for the Basic-Authentication credentials property. - letBasicAuthCredentials(BasicAuthCredentials) - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor.BasicAuthCredentialsProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs:Sets the
BasicAuthCredentials
for the Basic-Authentication credentials property. - letBearerAuthCredentials(String) - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor.BearerAuthCredentialsProperty
-
Sets the
BearerAuthCredentials
from the token for the bearer auth credentials property. - letBearerAuthCredentials(BearerAuthCredentials) - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor.BearerAuthCredentialsProperty
-
Sets the
BearerAuthCredentials
for the bearer auth credentials property. - letContentType(ContentType) - Method in interface org.refcodes.web.ContentTypeAccessor.ContentTypeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
ContentType
(setter) as ofContentTypeAccessor.ContentTypeMutator.setContentType(ContentType)
and returns the very same value (getter). - letFormFields(FormFields) - Method in interface org.refcodes.web.FormFieldsAccessor.FormFieldsProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
FormFields
(setter) as ofFormFieldsAccessor.FormFieldsMutator.setFormFields(FormFields)
and returns the very same value (getter). - letFragment(String) - Method in interface org.refcodes.web.FragmentAccessor.FragmentProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofFragmentAccessor.FragmentMutator.setFragment(String)
and returns the very same value (getter). - letHeaderField(HeaderField) - Method in interface org.refcodes.web.HeaderFieldAccessor.HeaderFieldProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
HeaderField
(setter) as ofHeaderFieldAccessor.HeaderFieldMutator.setHeaderField(HeaderField)
and returns the very same value (getter). - letHeaderFields(T) - Method in interface org.refcodes.web.HeaderFieldsAccessor.HeaderFieldsProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given value (setter) as of
HeaderFieldsAccessor.HeaderFieldsMutator.setHeaderFields(HeaderFields)
and returns the very same value (getter). - letHost(String) - Method in interface org.refcodes.web.HostAccessor.HostProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofHostAccessor.HostMutator.setHost(String)
and returns the very same value (getter). - letHttpBody(String) - Method in interface org.refcodes.web.HttpBodyAccessor.HttpBodyProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofHttpBodyAccessor.HttpBodyMutator.setHttpBody(String)
and returns the very same value (getter). - letHttpInputStream(InputStream) - Method in interface org.refcodes.web.HttpInputStreamAccessor.HttpInputStreamProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
InputStream
(setter) as ofHttpInputStreamAccessor.HttpInputStreamMutator.setHttpInputStream(InputStream)
and returns the very same value (getter). - letHttpMediaType(String) - Method in interface org.refcodes.web.HttpMediaTypeAccessor.HttpMediaTypeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofHttpMediaTypeAccessor.HttpMediaTypeMutator.setHttpMediaType(String)
and returns the very same value (getter). - letHttpMethod(HttpMethod) - Method in interface org.refcodes.web.HttpMethodAccessor.HttpMethodProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
HttpMethod
(setter) as ofHttpMethodAccessor.HttpMethodMutator.setHttpMethod(HttpMethod)
and returns the very same value (getter). - letHttpStatusCode(HttpStatusCode) - Method in interface org.refcodes.web.HttpStatusCodeAccessor.HttpStatusCodeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
HttpStatusCode
(setter) as ofHttpStatusCodeAccessor.HttpStatusCodeMutator.setHttpStatusCode(HttpStatusCode)
and returns the very same value (getter). - letHttpSuccessCode(HttpSuccessCode) - Method in interface org.refcodes.web.HttpSuccessCodeAccessor.HttpSuccessCodeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
HttpSuccessCode
(setter) as ofHttpSuccessCodeAccessor.HttpSuccessCodeMutator.setHttpSuccessCode(HttpSuccessCode)
and returns the very same value (getter). - letLoadBalancingStrategy(LoadBalancingStrategy) - Method in interface org.refcodes.web.LoadBalancingStrategyAccessor.LoadBalancingStrategyProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
LoadBalancingStrategy
(setter) as ofLoadBalancingStrategyAccessor.LoadBalancingStrategyMutator.setLoadBalancingStrategy(LoadBalancingStrategy)
and returns the very same value (getter). - letLocalAddress(InetSocketAddress) - Method in interface org.refcodes.web.LocalAddressAccessor.LocalAddressProperty
-
This method stores and passes through the given
InetSocketAddress
, which is very useful for builder APIs: Sets the given value (setter) as ofLocalAddressAccessor.LocalAddressMutator.setLocalAddress(InetSocketAddress)
and returns the very same value (getter). - letMediaType(MediaType) - Method in interface org.refcodes.web.MediaTypeAccessor.MediaTypeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
MediaType
(setter) as ofMediaTypeAccessor.MediaTypeMutator.setMediaType(MediaType)
and returns the very same value (getter). - letMediaTypes(MediaType[]) - Method in interface org.refcodes.web.MediaTypesAccessor.MediaTypesProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
MediaType
array (setter) as ofMediaTypesAccessor.MediaTypesMutator.setMediaTypes(MediaType[])
and returns the very same value (getter). - letOauthToken(OauthToken) - Method in interface org.refcodes.web.OauthTokenAccessor.OauthTokenProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
OauthToken
(setter) as ofOauthTokenAccessor.OauthTokenMutator.setOauthToken(OauthToken)
and returns the very same value (getter). - letProtocol(String) - Method in interface org.refcodes.web.SchemeAccessor.SchemeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofSchemeAccessor.SchemeMutator.setProtocol(String)
and returns the very same value (getter). - letQueryFields(FormFields) - Method in interface org.refcodes.web.QueryFieldsAccessor.QueryFieldsProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
FormFields
(setter) as ofQueryFieldsAccessor.QueryFieldsMutator.setQueryFields(FormFields)
and returns the very same value (getter). - letRealm(String) - Method in interface org.refcodes.web.RealmAccessor.RealmProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofRealmAccessor.RealmMutator.setRealm(String)
and returns the very same value (getter). - letRedirectDepth(int) - Method in interface org.refcodes.web.RedirectDepthAccessor.RedirectDepthProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given integer (setter) as of
RedirectDepthAccessor.RedirectDepthMutator.setRedirectDepth(int)
and returns the very same value (getter). - letRemoteAddress(InetSocketAddress) - Method in interface org.refcodes.web.RemoteAddressAccessor.RemoteAddressProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
InetSocketAddress
(setter) as ofRemoteAddressAccessor.RemoteAddressMutator.setRemoteAddress(InetSocketAddress)
and returns the very same value (getter). - letRequestHeaderFields(RequestHeaderFields) - Method in interface org.refcodes.web.RequestHeaderFieldsAccessor.RequestHeaderFieldsProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
RequestHeaderFields
(setter) as ofRequestHeaderFieldsAccessor.RequestHeaderFieldsMutator.setRequestHeaderFields(RequestHeaderFields)
and returns the very same value (getter). - letResponseHeaderFields(ResponseHeaderFields) - Method in interface org.refcodes.web.ResponseHeaderFieldsAccessor.ResponseHeaderFieldsProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
ResponseHeaderFields
(setter) as ofResponseHeaderFieldsAccessor.ResponseHeaderFieldsMutator.setResponseHeaderFields(ResponseHeaderFields)
and returns the very same value (getter). - letScheme(Scheme) - Method in interface org.refcodes.web.SchemeAccessor.SchemeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
Scheme
(setter) as ofSchemeAccessor.SchemeMutator.setScheme(Scheme)
and returns the very same value (getter). - letTopLevelType(TopLevelType) - Method in interface org.refcodes.web.TopLevelTypeAccessor.TopLevelTypeProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
TopLevelType
(setter) as ofTopLevelTypeAccessor.TopLevelTypeMutator.setTopLevelType(TopLevelType)
and returns the very same value (getter). - letUrl(Url) - Method in interface org.refcodes.web.UrlAccessor.UrlProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
Url
(setter) as ofUrlAccessor.UrlMutator.setUrl(Url)
and returns the very same value (getter). - letUserAgent(String) - Method in interface org.refcodes.web.UserAgentAccessor.UserAgentProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofUserAgentAccessor.UserAgentMutator.setUserAgent(String)
and returns the very same value (getter). - letVirtualHost(String) - Method in interface org.refcodes.web.VirtualHostAccessor.VirtualHostProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
String
(setter) as ofVirtualHostAccessor.VirtualHostMutator.setVirtualHost(String)
and returns the very same value (getter). - LoadBalancingStrategy - Enum Class in org.refcodes.web
-
Some simple load balancing strategies.
- LoadBalancingStrategyAccessor - Interface in org.refcodes.web
-
Provides access to a load balancing strategy property as of
LoadBalancingStrategy
. - LoadBalancingStrategyAccessor.LoadBalancingStrategyBuilder<B extends LoadBalancingStrategyAccessor.LoadBalancingStrategyBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a load balancing strategy property returning the builder for applying multiple build operations.
- LoadBalancingStrategyAccessor.LoadBalancingStrategyMutator - Interface in org.refcodes.web
-
Extends the
LoadBalancingStrategyAccessor
with a setter method. - LoadBalancingStrategyAccessor.LoadBalancingStrategyProperty - Interface in org.refcodes.web
-
Extends the
LoadBalancingStrategyAccessor
with a setter method. - LocalAddressAccessor - Interface in org.refcodes.web
-
Provides an accessor for a local address property.
- LocalAddressAccessor.LocalAddressBuilder<B extends LocalAddressAccessor.LocalAddressBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a local address property returning the builder for applying multiple build operations.
- LocalAddressAccessor.LocalAddressMutator - Interface in org.refcodes.web
-
Provides a mutator for a local address property.
- LocalAddressAccessor.LocalAddressProperty - Interface in org.refcodes.web
-
Provides a local address property.
- LOCATION - Enum constant in enum class org.refcodes.web.HeaderField
-
"...
- LOCKED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
423 Locked (WebDAV - RFC 2518).
- LockedException - Exception in org.refcodes.web
-
The Class LockedException.
- LockedException(String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, Throwable) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, Throwable, String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, Url) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, Url, String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(Throwable) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(Throwable, String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(Url, Throwable) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.LockedException
-
Instantiates a new according exception.
- LockedRuntimeException - Exception in org.refcodes.web
-
The Class LockedRuntimeException.
- LockedRuntimeException(String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
- LockedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.LockedRuntimeException
-
Instantiates a new according exception.
M
- MAC - Enum constant in enum class org.refcodes.web.TokenType
-
Use MAC Tokens in HTTP requests to access OAuth 2.0 protected resources.
- MAX_AGE - Enum constant in enum class org.refcodes.web.CookieAttribute
-
Internet Explorer (ie6, ie7, and ie8) does not support "MAX-AGE" , while (mostly) all browsers support
CookieAttribute.EXPIRES
. - MediaType - Enum Class in org.refcodes.web
-
The
MediaType
is the Media-Sub-Type part of a HTTP Media-Type. - MediaTypeAccessor - Interface in org.refcodes.web
-
Provides an accessor for a Media-Type property.
- MediaTypeAccessor.MediaTypeBuilder<B extends MediaTypeAccessor.MediaTypeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a Media-Type property returning the builder for applying multiple build operations.
- MediaTypeAccessor.MediaTypeMutator - Interface in org.refcodes.web
-
Provides a mutator for a Media-Type property.
- MediaTypeAccessor.MediaTypeProperty - Interface in org.refcodes.web
-
Provides a Media-Type property.
- MediaTypeFactory - Interface in org.refcodes.web
-
The
MediaTypeFactory
creates instances from an HTTP body and creates an HTTP body from given instances according to theMediaType
(as ofMediaTypesAccessor.getMediaTypes()
) for which theMediaTypeFactory
is responsible. - MediaTypeFactoryLookup - Interface in org.refcodes.web
-
The Interface MediaTypeFactoryLookup.
- MediaTypeFactoryLookup.MutableMediaTypeFactoryLookup - Interface in org.refcodes.web
-
Adds functionality to modify the
MediaTypeFactoryLookup
e.g. - MediaTypeParameter - Enum Class in org.refcodes.web
-
Known or in this scope used
MediaType
parameters. - MediaTypesAccessor - Interface in org.refcodes.web
-
Provides an accessor for a Media-Types property.
- MediaTypesAccessor.MediaTypesBuilder<B extends MediaTypesAccessor.MediaTypesBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a Media-Types property returning the builder for applying multiple build operations.
- MediaTypesAccessor.MediaTypesMutator - Interface in org.refcodes.web
-
Provides a mutator for a Media-Types property.
- MediaTypesAccessor.MediaTypesProperty - Interface in org.refcodes.web
-
Provides a Media-Types property.
- MESSAGE - Enum constant in enum class org.refcodes.web.TopLevelType
- MESSAGE_CPIM - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_DELIVERY_STATUS - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_DISPOSITION_NOTIFICATION - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_FEEDBACK_REPORT - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_GLOBAL - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_GLOBAL_DELIVERY_STATUS - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_GLOBAL_DISPOSITION_NOTIFICATION - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_GLOBAL_HEADERS - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_HTTP - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_IMDN_XML - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_NEWS - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_S_HTTP - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_SIP - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_SIPFRAG - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_TRACKING_STATUS - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_VND_SI_SIMP - Enum constant in enum class org.refcodes.web.MediaType
- MESSAGE_VND_WFA_WSC - Enum constant in enum class org.refcodes.web.MediaType
- METHOD_FAILURE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
420 Method Failure (WebDAV - draft-ietf-webdav-protocol-05?).
- METHOD_NOT_ALLOWED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
405 Method Not Allowed (HTTP/1.1 - RFC 2616)
- MethodFailureException - Exception in org.refcodes.web
-
The Class MethodFailureException.
- MethodFailureException(String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, Throwable) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, Url) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, Url, String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(Throwable) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(Url, Throwable) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureException
-
Instantiates a new according exception.
- MethodFailureRuntimeException - Exception in org.refcodes.web
-
The Class MethodFailureRuntimeException.
- MethodFailureRuntimeException(String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, Url) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(Throwable) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodFailureRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodFailureRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedException - Exception in org.refcodes.web
-
The Class MethodNotAllowedException.
- MethodNotAllowedException(String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, Url) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, Url, String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(Url, Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException - Exception in org.refcodes.web
-
The Class MethodNotAllowedRuntimeException.
- MethodNotAllowedRuntimeException(String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MethodNotAllowedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MethodNotAllowedRuntimeException
-
Instantiates a new according exception.
- MODEL - Enum constant in enum class org.refcodes.web.TopLevelType
- MODEL_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_GLTF_JSON - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_IGES - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_COLLADA_XML - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_DWF - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_FLATLAND_3DML - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_GDL - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_GS_GDL - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_GTW - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_MOML_XML - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_MTS - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_OPENGEX - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_PARASOLID_TRANSMIT_BINARY - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_PARASOLID_TRANSMIT_TEXT - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_ROSETTE_ANNOTATED_DATA_MODEL - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_VALVE_SOURCE_COMPILED_MAP - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_VND_VTU - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_X3D_FASTINFOSET - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_X3D_VRML - Enum constant in enum class org.refcodes.web.MediaType
- MODEL_X3D_XML - Enum constant in enum class org.refcodes.web.MediaType
- MOVED_PERMANENTLY - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
301 Moved Permanently (HTTP/1.0 - RFC 1945)
- MOVED_TEMPORARILY - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
302 Moved Temporarily (Sometimes Found) (HTTP/1.0 - RFC 1945)
- MovedPermanentlyException - Exception in org.refcodes.web
-
The Class MovedPermanentlyException.
- MovedPermanentlyException(String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, Url) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, Url, String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(Url, Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException - Exception in org.refcodes.web
-
The Class MovedPermanentlyRuntimeException.
- MovedPermanentlyRuntimeException(String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, Url) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedPermanentlyRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedPermanentlyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyException - Exception in org.refcodes.web
-
The Class MovedTemporarilyException.
- MovedTemporarilyException(String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, Url) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, Url, String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(Url, Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException - Exception in org.refcodes.web
-
The Class MovedTemporarilyRuntimeException.
- MovedTemporarilyRuntimeException(String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, Url) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MovedTemporarilyRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MovedTemporarilyRuntimeException
-
Instantiates a new according exception.
- MULTI_STATUS - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
207 Multi-Status (WebDAV - RFC 2518) or 207 Partial Update OK (HTTP/1.1 - draft-ietf-http-v11-spec-rev-01?)
- MULTI_STATUS - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
207 Multi-Status (WebDAV - RFC 2518) or 207 Partial Update OK (HTTP/1.1 - draft-ietf-http-v11-spec-rev-01?)
- MULTIPART - Enum constant in enum class org.refcodes.web.TopLevelType
- MULTIPART_APPLEDOUBLE - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_BYTERANGES - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_ENCRYPTED - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_FORM_DATA - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_HEADER_SET - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_RELATED - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_REPORT - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_SIGNED - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_VOICE_MESSAGE - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPART_X_MIXED_REPLACE - Enum constant in enum class org.refcodes.web.MediaType
- MULTIPLE_CHOICES - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
300 Mutliple Choices (HTTP/1.1 - RFC 2616)
- MultipleChoicesException - Exception in org.refcodes.web
-
The Class MultipleChoicesException.
- MultipleChoicesException(String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, Url) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, Url, String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(Url, Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException - Exception in org.refcodes.web
-
The Class MultipleChoicesRuntimeException.
- MultipleChoicesRuntimeException(String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, Url) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultipleChoicesRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MultipleChoicesRuntimeException
-
Instantiates a new according exception.
- MultiStatusException - Exception in org.refcodes.web
-
The Class MultiStatusException.
- MultiStatusException(String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, Throwable) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, Url) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, Url, String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(Throwable) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(Url, Throwable) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusException
-
Instantiates a new according exception.
- MultiStatusRuntimeException - Exception in org.refcodes.web
-
The Class MultiStatusRuntimeException.
- MultiStatusRuntimeException(String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, Url) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(Throwable) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
- MultiStatusRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.MultiStatusRuntimeException
-
Instantiates a new according exception.
N
- NO_CONTENT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
204 No Content (HTTP/1.0 - RFC 1945)
- NO_CONTENT - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
204 No Content (HTTP/1.0 - RFC 1945)
- NoContentException - Exception in org.refcodes.web
-
The Class NoContentException.
- NoContentException(String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, Throwable) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, Throwable, String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, Url) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, Url, String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(Throwable) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(Throwable, String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(Url, Throwable) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NoContentException
-
Instantiates a new according exception.
- NoContentRuntimeException - Exception in org.refcodes.web
-
The Class NoContentRuntimeException.
- NoContentRuntimeException(String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, Url) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(Throwable) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NoContentRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NoContentRuntimeException
-
Instantiates a new according exception.
- NON_AUTHORITATIVE_INFORMATION - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
203 Non Authoritative Information (HTTP/1.1 - RFC 2616)
- NON_AUTHORITATIVE_INFORMATION - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
203 Non Authoritative Information (HTTP/1.1 - RFC 2616)
- NonAuthoritativeInformationException - Exception in org.refcodes.web
-
The Class NonAuthoritativeInformationException.
- NonAuthoritativeInformationException(String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, Url) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, Url, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(Url, Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException - Exception in org.refcodes.web
-
The Class NonAuthoritativeInformationRuntimeException.
- NonAuthoritativeInformationRuntimeException(String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, Url) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NonAuthoritativeInformationRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NonAuthoritativeInformationRuntimeException
-
Instantiates a new according exception.
- NONE - Enum constant in enum class org.refcodes.web.LoadBalancingStrategy
-
No strategy is used.
- NONE - Enum constant in enum class org.refcodes.web.TopLevelType
- NOT_ACCEPTABLE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
406 Not Acceptable (HTTP/1.1 - RFC 2616)
- NOT_BEFORE_POLICY - Enum constant in enum class org.refcodes.web.HeaderField
-
Probably legacy, encountered upon using KeyCloak with OAuth.
- NOT_BEFORE_POLICY - Enum constant in enum class org.refcodes.web.OauthField
-
Probably legacy, encountered upon using KeyCloak.
- NOT_FOUND - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
404 Not Found (HTTP/1.0 - RFC 1945)
- NOT_IMPLEMENTED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
501 Not Implemented (HTTP/1.0 - RFC 1945)
- NOT_MODIFIED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
304 Not Modified (HTTP/1.0 - RFC 1945)
- NotAcceptableException - Exception in org.refcodes.web
-
The Class NotAcceptableException.
- NotAcceptableException(String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, Throwable) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, Url) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, Url, String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(Throwable) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(Url, Throwable) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException - Exception in org.refcodes.web
-
The Class NotAcceptableRuntimeException.
- NotAcceptableRuntimeException(String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, Url) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(Throwable) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotAcceptableRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotAcceptableRuntimeException
-
Instantiates a new according exception.
- NotFoundException - Exception in org.refcodes.web
-
The Class NotFoundException.
- NotFoundException(String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, Throwable) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, Url) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, Url, String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(Throwable) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(Throwable, String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(Url, Throwable) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotFoundException
-
Instantiates a new according exception.
- NotFoundRuntimeException - Exception in org.refcodes.web
-
The Class NotFoundRuntimeException.
- NotFoundRuntimeException(String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, Url) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(Throwable) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotFoundRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotFoundRuntimeException
-
Instantiates a new according exception.
- NotImplementedException - Exception in org.refcodes.web
-
The Class NotImplementedException.
- NotImplementedException(String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, Throwable) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, Url) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, Url, String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(Throwable) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(Url, Throwable) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedException
-
Instantiates a new according exception.
- NotImplementedRuntimeException - Exception in org.refcodes.web
-
The Class NotImplementedRuntimeException.
- NotImplementedRuntimeException(String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotImplementedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotImplementedRuntimeException
-
Instantiates a new according exception.
- NotModifiedException - Exception in org.refcodes.web
-
The Class NotModifiedException.
- NotModifiedException(String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, Throwable) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, Url) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, Url, String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(Throwable) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(Url, Throwable) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedException
-
Instantiates a new according exception.
- NotModifiedRuntimeException - Exception in org.refcodes.web
-
The Class NotModifiedRuntimeException.
- NotModifiedRuntimeException(String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
- NotModifiedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.NotModifiedRuntimeException
-
Instantiates a new according exception.
O
- OauthField - Enum Class in org.refcodes.web
-
The Enum OauthField.
- OauthToken - Class in org.refcodes.web
-
An OAuth-Token contains all relevant information to access a protected resource and refresh the the access token.
- OauthToken(String, String, String, Integer, String) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthToken(String, String, String, String, Integer, Integer, String, String) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthToken(String, String, String, String, String, Integer, Integer, String, String) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthToken(String, String, String, GrantType, String, Integer, Integer, String, String) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthToken(String, String, String, GrantType, String, String, Integer, Integer, String, String) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthToken(HttpBodyMap) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthToken(OauthToken) - Constructor for class org.refcodes.web.OauthToken
-
Creates a new instance of the
OauthToken
with the current time being stored for determining validity of the access token viaOauthToken.isValid()
as ofOauthToken.getExpiresIn()
. - OauthTokenAccessor - Interface in org.refcodes.web
-
Provides an accessor for a OAuth token property.
- OauthTokenAccessor.OauthTokenBuilder<B extends OauthTokenAccessor.OauthTokenBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a OAuth token property returning the builder for applying multiple build operations.
- OauthTokenAccessor.OauthTokenMutator - Interface in org.refcodes.web
-
Provides a mutator for a OAuth token property.
- OauthTokenAccessor.OauthTokenProperty - Interface in org.refcodes.web
-
Provides a OAuth token property.
- OK - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
200 OK (HTTP/1.0 - RFC 1945)
- OK - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
200 OK (HTTP/1.0 - RFC 1945)
- onBasicAuthRequest(InetSocketAddress, InetSocketAddress, HttpMethod, String, BasicAuthCredentials, String) - Method in interface org.refcodes.web.BasicAuthObserver
-
Invoked upon an incoming HTTP Basic-Authentication requests.
- onBasicAuthRequest(BasicAuthObserver) - Method in interface org.refcodes.web.BasicAuthObservable
-
Registers the
BasicAuthObserver
to handle incoming HTTP basic authentication requests. - onConnectionRequest(HttpsConnectionRequestObserver) - Method in interface org.refcodes.web.HttpsConnectionRequestObservable
-
Registers the
HttpsConnectionRequestObserver
to handle incoming HTTPS requests, possibly using lambda syntax. - onHttpsConnectionRequest(InetSocketAddress, InetSocketAddress, SSLParameters) - Method in interface org.refcodes.web.HttpsConnectionRequestObserver
-
Invoked upon an incoming HTTPS request.
- OPTIONS - Enum constant in enum class org.refcodes.web.HttpMethod
- org.refcodes.web - module org.refcodes.web
- org.refcodes.web - package org.refcodes.web
-
Use the types and definitions of this artifact when you are tired of defining your own networking based basics, your own HTTP-status-code enumerations (
HttpStatusCode
or exceptions representing erroneous HTTP state, or if you are tired of cookie handling, Header-Field processing ... and so on:
P
- PARTIAL_CONTENT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
206 Partial Content (HTTP/1.1 - RFC 2616)
- PARTIAL_CONTENT - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
206 Partial Content (HTTP/1.1 - RFC 2616)
- PartialContentException - Exception in org.refcodes.web
-
The Class PartialContentException.
- PartialContentException(String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, Throwable) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, Throwable, String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, Url) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, Url, String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, Url, Throwable) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(Throwable) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(Throwable, String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(Url, Throwable) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentException(Url, Throwable, String) - Constructor for exception org.refcodes.web.PartialContentException
-
Instantiates a new according exception.
- PartialContentRuntimeException - Exception in org.refcodes.web
-
The Class PartialContentRuntimeException.
- PartialContentRuntimeException(String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, Url) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(Throwable) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PartialContentRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.PartialContentRuntimeException
-
Instantiates a new according exception.
- PASSWORD - Enum constant in enum class org.refcodes.web.GrantType
-
Resource Owner Password "
password
" Grant (specification conforming grant). - PASSWORD - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- PASSWORD - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- PATCH - Enum constant in enum class org.refcodes.web.HttpMethod
- PATH - Enum constant in enum class org.refcodes.web.CookieAttribute
- PAYMENT_REQUIRED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
402 Payment Required (HTTP/1.1 - RFC 2616)
- PaymentRequiredException - Exception in org.refcodes.web
-
The Class PaymentRequiredException.
- PaymentRequiredException(String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, Url) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, Url, String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, Url, Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(Url, Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredException(Url, Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException - Exception in org.refcodes.web
-
The Class PaymentRequiredRuntimeException.
- PaymentRequiredRuntimeException(String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, Url) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- PaymentRequiredRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.PaymentRequiredRuntimeException
-
Instantiates a new according exception.
- POST - Enum constant in enum class org.refcodes.web.HttpMethod
- PostHttpClientInterceptable - Interface in org.refcodes.web
-
The
PostHttpClientInterceptable
defines aPostHttpInterceptable
for thePostHttpClientInterceptor
type. - PostHttpClientInterceptor - Interface in org.refcodes.web
-
An
PostHttpClientInterceptor
definition for post-processingHttpClientRequest
as well asHttpClientResponse
instances. - PostHttpInterceptable<I extends PostHttpInterceptor<?,
?>> - Interface in org.refcodes.web -
The
PostHttpInterceptable
provides base functionality for working withPostHttpInterceptor
instances. - PostHttpInterceptor<REQ extends HttpRequest,
RES extends HttpResponse> - Interface in org.refcodes.web -
An
PostHttpInterceptor
definition for post-processingHttpRequest
as well asHttpResponse
instances. - PostHttpServerInterceptable - Interface in org.refcodes.web
-
The
PostHttpServerInterceptable
defines aPostHttpInterceptable
for thePostHttpServerInterceptor
type. - PostHttpServerInterceptor - Interface in org.refcodes.web
-
An
PostHttpServerInterceptor
definition for post-processingHttpServerRequest
as well asHttpServerResponse
instances. - postIntercept(HttpClientRequest, HttpClientResponse) - Method in interface org.refcodes.web.PostHttpClientInterceptor
-
Invoked to post-process a
HttpClientRequest
alongside aHttpClientResponse
. - postIntercept(HttpServerRequest, HttpServerResponse) - Method in interface org.refcodes.web.PostHttpServerInterceptor
-
Invoked to post-process a
HttpServerRequest
alongside aHttpServerResponse
. - postIntercept(REQ, RES) - Method in interface org.refcodes.web.PostHttpInterceptor
-
Invoked to post-process a
HttpRequest
alongside aHttpResponse
. - PRECONDITION_FAILED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
412 Precondition Failed (HTTP/1.1 - RFC 2616)
- PreconditionFailedException - Exception in org.refcodes.web
-
The Class PreconditionFailedException.
- PreconditionFailedException(String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, Url) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, Url, String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(Url, Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException - Exception in org.refcodes.web
-
The Class PreconditionFailedRuntimeException.
- PreconditionFailedRuntimeException(String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreconditionFailedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.PreconditionFailedRuntimeException
-
Instantiates a new according exception.
- PreHttpClientInterceptable - Interface in org.refcodes.web
-
The
PreHttpClientInterceptable
defines aPreHttpInterceptable
for thePreHttpClientInterceptor
type. - PreHttpClientInterceptor - Interface in org.refcodes.web
-
An
PreHttpClientInterceptor
definition for pre-processingHttpClientRequest
as well asHttpClientResponse
instances. - PreHttpInterceptable<I extends PreHttpInterceptor<?,
?>> - Interface in org.refcodes.web -
The
PreHttpInterceptable
provides base functionality for working withPreHttpInterceptor
instances. - PreHttpInterceptor<REQ extends HttpRequest,
RES extends HttpResponse> - Interface in org.refcodes.web - PreHttpServerInterceptable - Interface in org.refcodes.web
-
The
PreHttpServerInterceptable
defines aPreHttpInterceptable
for thePreHttpServerInterceptor
type. - PreHttpServerInterceptor - Interface in org.refcodes.web
-
An
PreHttpServerInterceptor
definition for pre-processingHttpServerRequest
as well asHttpServerResponse
instances. - preIntercept(HttpClientRequest, HttpClientResponse) - Method in interface org.refcodes.web.PreHttpClientInterceptor
-
Invoked to pre-process a
HttpClientRequest
alongside aHttpClientResponse
. - preIntercept(HttpServerRequest, HttpServerResponse) - Method in interface org.refcodes.web.PreHttpServerInterceptor
-
Invoked to pre-process a
HttpServerRequest
alongside aHttpServerResponse
. - preIntercept(REQ, RES) - Method in interface org.refcodes.web.PreHttpInterceptor
-
Invoked to pre-process a
HttpRequest
alongside aHttpResponse
. - PROCESSING - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
102 Processing (WebDAV - RFC 2518).
- Proxy - Enum Class in org.refcodes.web
-
The Enum Proxy.
- PROXY_AUTHENTICATION_REQUIRED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
407 Proxy Authentication Required (HTTP/1.1 - RFC 2616)
- ProxyAuthenticationRequiredException - Exception in org.refcodes.web
-
The Class ProxyAuthenticationRequiredException.
- ProxyAuthenticationRequiredException(String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, Url) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, Url, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(Url, Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException - Exception in org.refcodes.web
-
The Class ProxyAuthenticationRequiredRuntimeException.
- ProxyAuthenticationRequiredRuntimeException(String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ProxyAuthenticationRequiredRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ProxyAuthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- put(Enum<?>, String) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.put(String, String)
though using the provided enumeration'sEnum.toString()
method to determine the key. - put(Enum<?>, String...) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.put(String, String...)
though using the provided enumeration'sEnum.toString()
method to determine the key. - put(String, String) - Method in interface org.refcodes.web.HttpFields
-
Sets a single value for the Header-Field (key).
- put(String, String...) - Method in interface org.refcodes.web.HttpFields
-
Performs a #set(String, String) on multiple values.
- put(String, List<String>) - Method in class org.refcodes.web.AbstractHeaderFields
- put(HeaderField, String) - Method in interface org.refcodes.web.HeaderFields
-
Puts (replaces) the currently set Header-Field values with the provided one.
- put(HeaderField, String...) - Method in interface org.refcodes.web.HeaderFields
-
Puts (replaces) the currently set Header-Field values with the provided ones.
- put(HeaderField, List<String>) - Method in interface org.refcodes.web.HeaderFields
-
Puts (replaces) the currently set Header-Field values with the provided ones.
- put(MediaTypeParameter, String) - Method in class org.refcodes.web.ContentType
-
Put.
- PUT - Enum constant in enum class org.refcodes.web.HttpMethod
- putAcceptCharsets(String...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept-Charset request-Header-Field
HeaderField.ACCEPT_CHARSET
. "... - putAcceptCharsets(List<String>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept-Charset request-Header-Field
HeaderField.ACCEPT_CHARSET
. "... - putAcceptEncodings(List<ContentEncoding>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - putAcceptEncodings(ContentEncoding...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - putAcceptLanguages(List<Locale>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.ACCEPT_LANGUAGE
: - putAcceptLanguages(Locale...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.ACCEPT_LANGUAGE
: - putAcceptTypes(List<? extends HttpMediaType>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept request-Header-Field
HeaderField.ACCEPT
. - putAcceptTypes(HttpMediaType...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept request-Header-Field
HeaderField.ACCEPT
. - putAll(Map<? extends String, ? extends List<String>>) - Method in class org.refcodes.web.AbstractHeaderFields
- putAllowMethods(List<HttpMethod>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Allow entity-Header-Field
HeaderField.ALLOW
: "... - putAllowMethods(HttpMethod...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Allow entity-Header-Field
HeaderField.ALLOW
: "... - putAuthenticate(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the WWW-Authenticate Response-Header-Field
HeaderField.WWW_AUTHENTICATE
: "... - putAuthorization(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - putAuthorization(String, String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - putAuthorization(AuthType, String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - putBasicAuthCredentials(String, String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the
BasicAuthCredentials
from the user name and the secret for the Basic-Authentication credentials property. - putBasicAuthCredentials(BasicAuthCredentials) - Method in interface org.refcodes.web.HeaderFields
-
Sets the
BasicAuthCredentials
(user name and secret) for HTTP Basic-Authentication. - putBasicAuthRequired(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the WWW-Authenticate field for Basic-Authentication with the given realm.
- putBearerAuthCredentials(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the
BearerAuthCredentials
from the token for the bearer auth credentials property. - putBearerAuthCredentials(BearerAuthCredentials) - Method in interface org.refcodes.web.HeaderFields
-
Sets the
BearerAuthCredentials
(token) for HTTP bearer authentication. - putCharsetParametrer(String) - Method in class org.refcodes.web.ContentType
-
Sets the charset parameter's charset-code.
- putContentEncoding(ContentEncoding) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - putContentLength(Integer) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Length request-Header-Field
HeaderField.CONTENT_LENGTH
: "... - putContentType(HttpMediaType) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Type entity-Header-Field
HeaderField.CONTENT_TYPE
. - putContentType(MediaType, Map<String, String>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Type entity-Header-Field
HeaderField.CONTENT_TYPE
. : "... - putDirAt(int, Object) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(Object[], int, Object) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(Object[], int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(Object, int, Object) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(Object, int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(String[], int, Object) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(String[], int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(String, int, Object) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(String, int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(Collection<?>, int, Object) - Method in class org.refcodes.web.HttpBodyMap
- putDirAt(Collection<?>, int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- putHost(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Host request-Header-Field
HeaderField.HOST
: "... - putLocation(String) - Method in class org.refcodes.web.ResponseHeaderFields
-
Sets the Location Response-Header-Field
HeaderField.LOCATION
: "... - putRequestId(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the (interprocess) Request-Correlation TID field
HeaderField.REQUEST_ID
: A Request-Correlation TID is an TID to uniquely identify an entity (request) across multiple systems. - putSessionId(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the (interprocess) Session-Correlation TID field
HeaderField.SESSION_ID
: A Session-Correlation TID is an TID to uniquely identify an entity (session) across multiple systems. - putStatusAlias(String) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/alias") status alias.
- putStatusAlias(HttpStatusCode) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/alias") status alias.
- putStatusCode(int) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/code") status code.
- putStatusCode(HttpStatusCode) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/code") status code.
- putStatusException(Class<Exception>) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/exception") status exception.
- putStatusException(Exception) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/exception") status exception.
- putStatusMessage(String) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/aMessage") status aMessage.
- putStatusTimeStamp() - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/Time-Stamp") status Time-Stamp to the current time in milliseconds as of
System.currentTimeMillis()
- putStatusTimeStamp(long) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/Time-Stamp") status Time-Stamp in milliseconds.
- putUserAgent(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the User-Agent request-Header-Field
HeaderField.USER_AGENT
: "...
Q
- query(Object...) - Method in class org.refcodes.web.HttpBodyMap
- query(String) - Method in class org.refcodes.web.HttpBodyMap
- query(String...) - Method in class org.refcodes.web.HttpBodyMap
- query(Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- query(Pattern) - Method in class org.refcodes.web.HttpBodyMap
- queryBetween(Object[], Object[], Object[]) - Method in class org.refcodes.web.HttpBodyMap
- queryBetween(Object, Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- queryBetween(String[], String[], String[]) - Method in class org.refcodes.web.HttpBodyMap
- queryBetween(String, String, String) - Method in class org.refcodes.web.HttpBodyMap
- queryBetween(String, Pattern, String) - Method in class org.refcodes.web.HttpBodyMap
- queryBetween(Collection<?>, Collection<?>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- QueryFieldsAccessor - Interface in org.refcodes.web
-
Provides an accessor for a request Query-Fields property.
- QueryFieldsAccessor.QueryFieldsBuilder<B extends QueryFieldsAccessor.QueryFieldsBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for a request Query-Fields property.
- QueryFieldsAccessor.QueryFieldsMutator - Interface in org.refcodes.web
-
Provides a mutator for a request Query-Fields property.
- QueryFieldsAccessor.QueryFieldsProperty - Interface in org.refcodes.web
-
Provides a request Query-Fields property.
- queryFrom(Object[], Object[]) - Method in class org.refcodes.web.HttpBodyMap
- queryFrom(Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- queryFrom(String[], String[]) - Method in class org.refcodes.web.HttpBodyMap
- queryFrom(String, String) - Method in class org.refcodes.web.HttpBodyMap
- queryFrom(Collection<?>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- queryFrom(Pattern, String) - Method in class org.refcodes.web.HttpBodyMap
- queryTo(Object[], String) - Method in class org.refcodes.web.HttpBodyMap
- queryTo(Object, String) - Method in class org.refcodes.web.HttpBodyMap
- queryTo(String[], String) - Method in class org.refcodes.web.HttpBodyMap
- queryTo(String, String) - Method in class org.refcodes.web.HttpBodyMap
- queryTo(Collection<?>, String) - Method in class org.refcodes.web.HttpBodyMap
- queryTo(Pattern, String) - Method in class org.refcodes.web.HttpBodyMap
R
- RANDOM - Enum constant in enum class org.refcodes.web.LoadBalancingStrategy
-
An server for a request is chosen at random from a list of applicable servers.
- RANDOM_STICKY - Enum constant in enum class org.refcodes.web.LoadBalancingStrategy
-
Some custom strategy is being used.
- RealmAccessor - Interface in org.refcodes.web
-
Provides an accessor for a realm property.
- RealmAccessor.RealmBuilder<B extends RealmAccessor.RealmBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a realm property returning the builder for applying multiple build operations.
- RealmAccessor.RealmMutator - Interface in org.refcodes.web
-
Provides a mutator for a realm property.
- RealmAccessor.RealmProperty - Interface in org.refcodes.web
-
Provides a realm property.
- REAUTHENTICATION_REQUIRED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
418 Unprocessable Entity (WebDAV drafts?)
- ReauthenticationRequiredException - Exception in org.refcodes.web
-
The Class ReauthenticationRequiredException.
- ReauthenticationRequiredException(String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, Url) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, Url, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(Url, Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException - Exception in org.refcodes.web
-
The Class ReauthenticationRequiredRuntimeException.
- ReauthenticationRequiredRuntimeException(String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- ReauthenticationRequiredRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ReauthenticationRequiredRuntimeException
-
Instantiates a new according exception.
- REDIRECT_URI - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- REDIRECT_URI - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- RedirectDepthAccessor - Interface in org.refcodes.web
-
Provides an accessor for a redirect depth property.
- RedirectDepthAccessor.RedirectDepthBuilder<B extends RedirectDepthAccessor.RedirectDepthBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a redirect depth property returning the builder for applying multiple build operations.
- RedirectDepthAccessor.RedirectDepthMutator - Interface in org.refcodes.web
-
Provides a mutator for a redirect depth property.
- RedirectDepthAccessor.RedirectDepthProperty - Interface in org.refcodes.web
-
Provides a redirect depth property.
- REFRESH_EXPIRES_IN - Enum constant in enum class org.refcodes.web.HeaderField
-
Probably legacy, encountered upon using KeyCloak with OAuth.
- REFRESH_EXPIRES_IN - Enum constant in enum class org.refcodes.web.OauthField
-
Probably legacy, encountered upon using KeyCloak.
- REFRESH_TOKEN - Enum constant in enum class org.refcodes.web.GrantType
-
Use Refresh Tokens (specification conforming grant).
- REFRESH_TOKEN - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
- REFRESH_TOKEN - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- RemoteAddressAccessor - Interface in org.refcodes.web
-
Provides an accessor for a remote address property.
- RemoteAddressAccessor.RemoteAddressBuilder<B extends RemoteAddressAccessor.RemoteAddressBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a remote address property returning the builder for applying multiple build operations.
- RemoteAddressAccessor.RemoteAddressMutator - Interface in org.refcodes.web
-
Provides a mutator for a remote address property.
- RemoteAddressAccessor.RemoteAddressProperty - Interface in org.refcodes.web
-
Provides a remote address property.
- remove(HeaderField) - Method in interface org.refcodes.web.HeaderFields
-
Removes the values from the given Header-Field.
- removeAcceptCharsets() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Accept-Charset request-Header-Field
HeaderField.ACCEPT_CHARSET
. "... - removeAcceptEncodings() - Method in interface org.refcodes.web.HeaderFields
-
Removes the the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - removeAcceptLanguages() - Method in interface org.refcodes.web.HeaderFields
-
Removes the the Content-Encoding entity-Header-Field
HeaderField.ACCEPT_LANGUAGE
: "... - removeAcceptTypes() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Accept request-Header-Field
HeaderField.ACCEPT
: "... - removeAll(Object) - Method in class org.refcodes.web.HttpBodyMap
- removeAll(Object...) - Method in class org.refcodes.web.HttpBodyMap
- removeAll(String) - Method in class org.refcodes.web.HttpBodyMap
- removeAll(String...) - Method in class org.refcodes.web.HttpBodyMap
- removeAll(Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- removeAll(Pattern) - Method in class org.refcodes.web.HttpBodyMap
- removeAllowMethods() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Allow entity-Header-Field
HeaderField.ALLOW
: "... - removeAuthenticate() - Method in interface org.refcodes.web.HeaderFields
-
Removes the WWW-Authenticate Response-Header-Field
HeaderField.WWW_AUTHENTICATE
: "... - removeAuthorization() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - removeBasicAuthCredentials() - Method in interface org.refcodes.web.HeaderFields
-
Removes the
BasicAuthCredentials
(user name and secret) for HTTP Basic-Authentication. - removeBasicAuthenticate() - Method in interface org.refcodes.web.HeaderFields
-
Removes the WWW-Authenticate field for Basic-Authentication.
- removeBearerAuthCredentials() - Method in interface org.refcodes.web.HeaderFields
-
Removes the
BearerAuthCredentials
(token) for HTTP bearer authentication. - removeContentEncoding() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - removeContentLength() - Method in interface org.refcodes.web.HeaderFields
-
Removes he Content-Length request-Header-Field
HeaderField.CONTENT_LENGTH
: "... - removeContentType() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Content-Type entity-Header-Field
HeaderField.CONTENT_TYPE
. : "... - removeDirAt(int) - Method in class org.refcodes.web.HttpBodyMap
- removeDirAt(Object[], int) - Method in class org.refcodes.web.HttpBodyMap
- removeDirAt(Object, int) - Method in class org.refcodes.web.HttpBodyMap
- removeDirAt(String[], int) - Method in class org.refcodes.web.HttpBodyMap
- removeDirAt(String, int) - Method in class org.refcodes.web.HttpBodyMap
- removeFrom(Object) - Method in class org.refcodes.web.HttpBodyMap
- removeFrom(Object...) - Method in class org.refcodes.web.HttpBodyMap
- removeFrom(String) - Method in class org.refcodes.web.HttpBodyMap
- removeFrom(String...) - Method in class org.refcodes.web.HttpBodyMap
- removeHost() - Method in interface org.refcodes.web.HeaderFields
-
Removes the Host request-Header-Field
HeaderField.HOST
: "... - removeHttpInterceptor(I) - Method in interface org.refcodes.web.HttpInterceptable
-
Removes the
HttpInterceptor
instance. - removeHttpInterceptor(HttpClientInterceptor) - Method in interface org.refcodes.web.HttpClientInterceptable
-
Removes the
HttpClientInterceptor
instance. - removeHttpInterceptor(HttpServerInterceptor) - Method in interface org.refcodes.web.HttpServerInterceptable
-
Removes the
HttpServerInterceptor
instance. - removeLocation() - Method in class org.refcodes.web.ResponseHeaderFields
-
Removes the Location Response-Header-Field
HeaderField.LOCATION
: "... - removePaths(String...) - Method in class org.refcodes.web.HttpBodyMap
- removePaths(Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- removePostHttpInterceptor(I) - Method in interface org.refcodes.web.PostHttpInterceptable
-
Removes the
PostHttpInterceptor
instance. - removePreHttpInterceptor(I) - Method in interface org.refcodes.web.PreHttpInterceptable
-
Removes the
PreHttpInterceptor
instance. - removeRequestId() - Method in interface org.refcodes.web.HeaderFields
-
Removes the (interprocess) Request-Correlation TID field
HeaderField.REQUEST_ID
: A Request-Correlation TID is an TID to uniquely identify an entity (request) across multiple systems. - removeSessionId() - Method in interface org.refcodes.web.HeaderFields
-
Removes the (interprocess) Session-Correlation TID field
HeaderField.SESSION_ID
: A Session-Correlation TID is an TID to uniquely identify an entity (session) across multiple systems. - removeUserAgent() - Method in interface org.refcodes.web.HeaderFields
-
Removes he User-Agent request-Header-Field
HeaderField.USER_AGENT
: "... - REQUEST_ID - Enum constant in enum class org.refcodes.web.HeaderField
- REQUEST_TIMEOUT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
408 Request Timeout (HTTP/1.1 - RFC 2616)
- REQUEST_TOO_LONG - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
413 Request Entity Too Large (HTTP/1.1 - RFC 2616)
- REQUEST_URI_TOO_LONG - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
414 Request-URI Too Long (HTTP/1.1 - RFC 2616)
- RequestCookie - Class in org.refcodes.web
-
The
RequestCookie
represents a request cookies: We use URL encoding / decoding for the cookie value (regardingRequestCookie.fromHttpCookie(String)
andRequestCookie.toHttpCookie()
) to make life easier and not fall into the trap of unescaped values. - RequestCookie() - Constructor for class org.refcodes.web.RequestCookie
-
Constructs a
RequestCookie
. - RequestCookie(String) - Constructor for class org.refcodes.web.RequestCookie
-
Constructs a
RequestCookie
. - RequestCookie(String, String) - Constructor for class org.refcodes.web.RequestCookie
-
Constructs a
RequestCookie
with the given cookie name and value. - REQUESTED_RANGE_NOT_SATISFIABLE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
416 Requested Range Not Satisfiable (HTTP/1.1 - RFC 2616)
- RequestedRangeNotSatisfiableException - Exception in org.refcodes.web
-
The Class RequestedRangeNotSatisfiableException.
- RequestedRangeNotSatisfiableException(String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, Url) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, Url, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException - Exception in org.refcodes.web
-
The Class RequestedRangeNotSatisfiableRuntimeException.
- RequestedRangeNotSatisfiableRuntimeException(String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, Url) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestedRangeNotSatisfiableRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestedRangeNotSatisfiableRuntimeException
-
Instantiates a new according exception.
- RequestHeaderFields - Class in org.refcodes.web
-
The
RequestHeaderFields
reflect the structure of a HTTP-Header and may be used to represent a HTTP-Header. - RequestHeaderFields() - Constructor for class org.refcodes.web.RequestHeaderFields
-
Instantiates a new request Header-Fields impl.
- RequestHeaderFields(Map<String, List<String>>) - Constructor for class org.refcodes.web.RequestHeaderFields
-
Instantiates a new request Header-Fields impl.
- RequestHeaderFieldsAccessor - Interface in org.refcodes.web
-
Provides an accessor for an request Header-Fields property.
- RequestHeaderFieldsAccessor.RequestHeaderFieldsBuilder<B extends RequestHeaderFieldsAccessor.RequestHeaderFieldsBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for an request Header-Fields property.
- RequestHeaderFieldsAccessor.RequestHeaderFieldsMutator - Interface in org.refcodes.web
-
Provides a mutator for an request Header-Fields property.
- RequestHeaderFieldsAccessor.RequestHeaderFieldsProperty - Interface in org.refcodes.web
-
Provides an request Header-Fields property.
- RequestTimeoutException - Exception in org.refcodes.web
-
The Class RequestTimeoutException.
- RequestTimeoutException(String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, Url) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, Url, String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException - Exception in org.refcodes.web
-
The Class RequestTimeoutRuntimeException.
- RequestTimeoutRuntimeException(String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, Url) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTimeoutRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTimeoutRuntimeException
-
Instantiates a new according exception.
- RequestTooLongException - Exception in org.refcodes.web
-
The Class RequestTooLongException.
- RequestTooLongException(String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, Throwable) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, Url) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, Url, String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(Throwable) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException - Exception in org.refcodes.web
-
The Class RequestTooLongRuntimeException.
- RequestTooLongRuntimeException(String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, Url) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(Throwable) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestTooLongRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongException - Exception in org.refcodes.web
-
The Class RequestUriTooLongException.
- RequestUriTooLongException(String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, Url) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, Url, String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException - Exception in org.refcodes.web
-
The Class RequestUriTooLongRuntimeException.
- RequestUriTooLongRuntimeException(String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, Url) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RequestUriTooLongRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.RequestUriTooLongRuntimeException
-
Instantiates a new according exception.
- RESET_CONTENT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
205 Reset Content (HTTP/1.1 - RFC 2616)
- RESET_CONTENT - Enum constant in enum class org.refcodes.web.HttpSuccessCode
-
205 Reset Content (HTTP/1.1 - RFC 2616)
- ResetContentException - Exception in org.refcodes.web
-
The Class ResetContentException.
- ResetContentException(String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, Throwable) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, Throwable, String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, Url) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, Url, String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(Throwable) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(Throwable, String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(Url, Throwable) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ResetContentException
-
Instantiates a new according exception.
- ResetContentRuntimeException - Exception in org.refcodes.web
-
The Class ResetContentRuntimeException.
- ResetContentRuntimeException(String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResetContentRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ResetContentRuntimeException
-
Instantiates a new according exception.
- ResponseCookie - Class in org.refcodes.web
-
As of "HTTP cookies explained - NCZOnline": "...
- ResponseCookie() - Constructor for class org.refcodes.web.ResponseCookie
-
Instantiates a new response cookie impl.
- ResponseCookie(String) - Constructor for class org.refcodes.web.ResponseCookie
-
Constructs a
ResponseCookie
from the given HTTP cookie. - ResponseCookie(String, String) - Constructor for class org.refcodes.web.ResponseCookie
-
Constructs a
ResponseCookie
. - ResponseCookie(String, String, int, String, String, boolean, boolean, String) - Constructor for class org.refcodes.web.ResponseCookie
-
Constructs a
ResponseCookie
. - ResponseCookie(String, String, Date, String, String, boolean, boolean, String) - Constructor for class org.refcodes.web.ResponseCookie
-
Constructs a
ResponseCookie
. - ResponseCookie(Cookie) - Constructor for class org.refcodes.web.ResponseCookie
-
Constructs a
ResponseCookie
. - ResponseHeaderFields - Class in org.refcodes.web
-
The
ResponseHeaderFields
reflect the structure of a HTTP header and may be used to represent a HTTP header. - ResponseHeaderFields() - Constructor for class org.refcodes.web.ResponseHeaderFields
- ResponseHeaderFieldsAccessor - Interface in org.refcodes.web
-
Provides an accessor for an response Header-Fields property.
- ResponseHeaderFieldsAccessor.ResponseHeaderFieldsBuilder<B extends ResponseHeaderFieldsAccessor.ResponseHeaderFieldsBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for an response Header-Fields property.
- ResponseHeaderFieldsAccessor.ResponseHeaderFieldsMutator - Interface in org.refcodes.web
-
Provides a mutator for an response Header-Fields property.
- ResponseHeaderFieldsAccessor.ResponseHeaderFieldsProperty - Interface in org.refcodes.web
-
Provides an response Header-Fields property.
- retrieveBetween(Object[], Object[]) - Method in class org.refcodes.web.HttpBodyMap
- retrieveBetween(Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- retrieveBetween(String[], String[]) - Method in class org.refcodes.web.HttpBodyMap
- retrieveBetween(String, String) - Method in class org.refcodes.web.HttpBodyMap
- retrieveBetween(Collection<?>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- retrieveFrom(Object) - Method in class org.refcodes.web.HttpBodyMap
- retrieveFrom(Object...) - Method in class org.refcodes.web.HttpBodyMap
- retrieveFrom(String) - Method in class org.refcodes.web.HttpBodyMap
- retrieveFrom(String...) - Method in class org.refcodes.web.HttpBodyMap
- retrieveFrom(Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- retrieveTo(Object) - Method in class org.refcodes.web.HttpBodyMap
- retrieveTo(Object...) - Method in class org.refcodes.web.HttpBodyMap
- retrieveTo(String) - Method in class org.refcodes.web.HttpBodyMap
- retrieveTo(String...) - Method in class org.refcodes.web.HttpBodyMap
- retrieveTo(Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- ROUND_ROBIN - Enum constant in enum class org.refcodes.web.LoadBalancingStrategy
-
Succeeding requests are issued to succeeding servers, having used the last on in the list of applicable servers, then the procedure is continued with the first on in the list.
S
- SAML2_BEARER - Enum constant in enum class org.refcodes.web.GrantType
-
Use SAML 2.0 Bearer "
urn:ietf:params:oauth:grant-type:saml2-bearer
" Grant (flow for SAML 2.0 Bearer Grant). - SchemeAccessor - Interface in org.refcodes.web
-
Provides an accessor for a URL scheme.
- SchemeAccessor.SchemeBuilder<B extends SchemeAccessor.SchemeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a URL scheme returning the builder for applying multiple build operations.
- SchemeAccessor.SchemeMutator - Interface in org.refcodes.web
-
Provides a mutator for a URL scheme.
- SchemeAccessor.SchemeProperty - Interface in org.refcodes.web
-
Provides a URL scheme.
- SCOPE - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: OAuth scopes let you specify exactly how your application needs to access a user's resource.
- SCOPE - Enum constant in enum class org.refcodes.web.OauthField
-
OAuth scopes let you specify exactly how your application needs to access a user's resource.
- SECURE - Enum constant in enum class org.refcodes.web.CookieAttribute
- SEE_OTHER - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
303 See Other (HTTP/1.1 - RFC 2616)
- SeeOtherException - Exception in org.refcodes.web
-
The Class SeeOtherException.
- SeeOtherException(String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, Throwable) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, Url) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, Url, String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, Url, Throwable) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(Throwable) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(Url, Throwable) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherException(Url, Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherException
-
Instantiates a new according exception.
- SeeOtherRuntimeException - Exception in org.refcodes.web
-
The Class SeeOtherRuntimeException.
- SeeOtherRuntimeException(String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, Url) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(Throwable) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SeeOtherRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.SeeOtherRuntimeException
-
Instantiates a new according exception.
- SERVICE_UNAVAILABLE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
503 Service Unavailable (HTTP/1.0 - RFC 1945)
- ServiceUnavailableException - Exception in org.refcodes.web
-
The Class ServiceUnavailableException.
- ServiceUnavailableException(String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, Url) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, Url, String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(Url, Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException - Exception in org.refcodes.web
-
The Class ServiceUnavailableRuntimeException.
- ServiceUnavailableRuntimeException(String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, Url) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- ServiceUnavailableRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.ServiceUnavailableRuntimeException
-
Instantiates a new according exception.
- SESSION_ID - Enum constant in enum class org.refcodes.web.HeaderField
- SESSION_STATE - Enum constant in enum class org.refcodes.web.HeaderField
-
Probably legacy, encountered upon using KeyCloak with OAuth.
- SESSION_STATE - Enum constant in enum class org.refcodes.web.OauthField
-
Probably legacy, encountered upon using KeyCloak.
- SET_COOKIE - Enum constant in enum class org.refcodes.web.HeaderField
-
The Set-Cookie HTTP Response-Header is used to send cookies from the server to the user agent.
- setAuthType(String) - Method in interface org.refcodes.web.AuthTypeAccessor.AuthTypeMutator
-
Sets the
AuthType
from the bearer and token for the Authorization-Type property. - setAuthType(AuthType) - Method in interface org.refcodes.web.AuthTypeAccessor.AuthTypeMutator
-
Sets the
AuthType
for the Authorization-Type property. - setBaseLocator(String) - Method in interface org.refcodes.web.BaseLocatorAccessor.BaseLocatorMutator
-
Sets the base locator for the base locator property.
- setBaseUrl(String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the givenString
. - setBaseUrl(String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(String, String, int) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(String, String, int, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(String, String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(URL) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Sets the base URL (protocol, host, port, path) for the base URL (protocol, host, port, path) property.
- setBaseUrl(URL) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Sets the base URL (protocol, host, port, path) for the base URL (protocol, host, port, path) property.
- setBaseUrl(Scheme, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(Scheme, String, int) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(Scheme, String, int, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(Scheme, String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Same as
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - setBaseUrl(Url) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlMutator
-
Sets the base
Url
(protocol, host, port, path) for the base URL (protocol, host, port, path) property. - setBaseUrl(Url) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Sets the base
Url
(protocol, host, port, path) for the base URL (protocol, host, port, path) property. - setBasicAuthCredentials(String, String) - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor.BasicAuthCredentialsMutator
-
Sets the
BasicAuthCredentials
from the user name and the secret for the Basic-Authentication credentials property. - setBasicAuthCredentials(BasicAuthCredentials) - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor.BasicAuthCredentialsMutator
-
Sets the
BasicAuthCredentials
for the Basic-Authentication credentials property. - setBearerAuthCredentials(String) - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor.BearerAuthCredentialsMutator
-
Sets the
BearerAuthCredentials
from the token for the bearer auth credentials property. - setBearerAuthCredentials(BearerAuthCredentials) - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor.BearerAuthCredentialsMutator
-
Sets the
BearerAuthCredentials
for the bearer auth credentials property. - setContentType(ContentType) - Method in interface org.refcodes.web.ContentTypeAccessor.ContentTypeMutator
-
Sets the Content-Type for the Content-Type property.
- setDomain(String) - Method in class org.refcodes.web.ResponseCookie
- setExpiresAfter(TimeUnit, long) - Method in class org.refcodes.web.ResponseCookie
-
Sets the expires date to the current time plus the provided time.
- setExpiresDate(Date) - Method in class org.refcodes.web.ResponseCookie
-
Sets the expiration date of this cookie.
- setFormFields(FormFields) - Method in interface org.refcodes.web.FormFieldsAccessor.FormFieldsMutator
-
Sets the request Form-Fields for the request Form-Fields property.
- setFragment(String) - Method in interface org.refcodes.web.FragmentAccessor.FragmentMutator
-
Sets the fragment for the fragment property.
- setFragment(String) - Method in class org.refcodes.web.UrlBuilder
-
Sets the fragment for the fragment property.
- setHeaderField(HeaderField) - Method in interface org.refcodes.web.HeaderFieldAccessor.HeaderFieldMutator
-
Sets the
HeaderField
for theHeaderField
property. - setHeaderFields(T) - Method in interface org.refcodes.web.HeaderFieldsAccessor.HeaderFieldsMutator
-
Sets the Header-Fields for the Header-Fields property.
- setHost(String) - Method in interface org.refcodes.web.HostAccessor.HostMutator
-
Sets the host for the host property.
- setHost(String) - Method in class org.refcodes.web.Url
- setHost(String) - Method in class org.refcodes.web.UrlBuilder
-
Sets the host for the host property.
- setHttpBody(String) - Method in interface org.refcodes.web.HttpBodyAccessor.HttpBodyMutator
-
Sets the HTTP body for the HTTP body property.
- setHttpInputStream(InputStream) - Method in interface org.refcodes.web.HttpInputStreamAccessor.HttpInputStreamMutator
-
Sets the
InputStream
for the HTTPInputStream
property. - setHttpMediaType(String) - Method in interface org.refcodes.web.HttpMediaTypeAccessor.HttpMediaTypeMutator
-
Sets the HTTP Media-Type for the HTTP Media-Type property.
- setHttpMethod(HttpMethod) - Method in interface org.refcodes.web.HttpMethodAccessor.HttpMethodMutator
-
Sets the HTTP-Method for the HTTP-Method property.
- setHttpOnly(boolean) - Method in class org.refcodes.web.ResponseCookie
-
Sets whether it be an HTTP only cookie.
- setHttpStatusCode(HttpStatusCode) - Method in class org.refcodes.web.HttpServerResponse
-
Sets the HTTP Status-Code for the HTTP Status-Code property.
- setHttpStatusCode(HttpStatusCode) - Method in interface org.refcodes.web.HttpStatusCodeAccessor.HttpStatusCodeMutator
-
Sets the HTTP Status-Code for the HTTP Status-Code property.
- setHttpSuccessCode(HttpSuccessCode) - Method in interface org.refcodes.web.HttpSuccessCodeAccessor.HttpSuccessCodeMutator
-
Sets the HTTP success code for the HTTP success code property.
- setIdentity(String) - Method in class org.refcodes.web.BasicAuthCredentialsBuilder
- setIdentity(String) - Method in class org.refcodes.web.UrlBuilder
- setIpAddress(int[]) - Method in class org.refcodes.web.Url
- setIpAddress(int[]) - Method in class org.refcodes.web.UrlBuilder
- setKeyStoreDescriptor(KeyStoreDescriptor) - Method in class org.refcodes.web.HttpServerContextBuilder
- setLoadBalancingStrategy(LoadBalancingStrategy) - Method in interface org.refcodes.web.LoadBalancingStrategyAccessor.LoadBalancingStrategyMutator
-
Sets the load balancing strategy for the load balancing strategy property.
- setLocalAddress(InetSocketAddress) - Method in interface org.refcodes.web.LocalAddressAccessor.LocalAddressMutator
-
Sets the local address for the local address property.
- setMaxAge(int) - Method in class org.refcodes.web.ResponseCookie
-
Sets the Max-Age (seconds) of this cookie.
- setMaxConnections(int) - Method in class org.refcodes.web.HttpServerContextBuilder
- setMediaType(MediaType) - Method in interface org.refcodes.web.MediaTypeAccessor.MediaTypeMutator
-
Sets the Media-Type for the Media-Type property.
- setMediaTypes(MediaType[]) - Method in interface org.refcodes.web.MediaTypesAccessor.MediaTypesMutator
-
Sets the Media-Types for the Media-Types property.
- setOauthToken(OauthToken) - Method in interface org.refcodes.web.OauthTokenAccessor.OauthTokenMutator
-
Sets the OAuth token for the OAuth token property.
- setPath(String) - Method in class org.refcodes.web.ResponseCookie
- setPath(String) - Method in class org.refcodes.web.Url
- setPath(String) - Method in class org.refcodes.web.UrlBuilder
- setPort(int) - Method in class org.refcodes.web.HttpServerContextBuilder
- setPort(int) - Method in class org.refcodes.web.Url
- setPort(int) - Method in class org.refcodes.web.UrlBuilder
- setProtocol(String) - Method in class org.refcodes.web.HttpServerContextBuilder
-
Sets the protocol
String
representation for the scheme property. - setProtocol(String) - Method in interface org.refcodes.web.SchemeAccessor.SchemeMutator
-
Sets the protocol
String
representation for the scheme property. - setProtocol(String) - Method in class org.refcodes.web.Url
- setProtocol(String) - Method in class org.refcodes.web.UrlBuilder
-
Sets the protocol
String
representation for the scheme property. - setQueryFields(FormFields) - Method in interface org.refcodes.web.QueryFieldsAccessor.QueryFieldsMutator
-
Sets the request Query-Fields for the request Query-Fields property.
- setQueryFields(FormFields) - Method in class org.refcodes.web.UrlBuilder
-
Sets the request Query-Fields for the request Query-Fields property.
- setRealm(String) - Method in interface org.refcodes.web.RealmAccessor.RealmMutator
-
Sets the realm for the realm property.
- setRedirectDepth(int) - Method in class org.refcodes.web.HttpClientRequest
-
Sets the redirect depth for the redirect depth property.
- setRedirectDepth(int) - Method in interface org.refcodes.web.RedirectDepthAccessor.RedirectDepthMutator
-
Sets the redirect depth for the redirect depth property.
- setRemoteAddress(InetSocketAddress) - Method in interface org.refcodes.web.RemoteAddressAccessor.RemoteAddressMutator
-
Sets the remote address for the remote address property.
- setRequest(REQ) - Method in class org.refcodes.web.HttpClientRequest
-
Sets the request for the request property.
- setRequestHeaderFields(RequestHeaderFields) - Method in interface org.refcodes.web.RequestHeaderFieldsAccessor.RequestHeaderFieldsMutator
-
Sets the request Header-Fields for the request Header-Fields property.
- setResponse(RES) - Method in class org.refcodes.web.HttpServerResponse
-
Sets the response for the response property.
- setResponseHeaderFields(ResponseHeaderFields) - Method in interface org.refcodes.web.ResponseHeaderFieldsAccessor.ResponseHeaderFieldsMutator
-
Sets the response Header-Fields for the response Header-Fields property.
- setScheme(Scheme) - Method in class org.refcodes.web.HttpServerContextBuilder
-
Sets the UrlScheme for the URL scheme.
- setScheme(Scheme) - Method in interface org.refcodes.web.SchemeAccessor.SchemeMutator
-
Sets the UrlScheme for the URL scheme.
- setScheme(Scheme) - Method in class org.refcodes.web.Url
- setScheme(Scheme) - Method in class org.refcodes.web.UrlBuilder
-
Sets the UrlScheme for the URL scheme.
- setSecret(String) - Method in class org.refcodes.web.BasicAuthCredentialsBuilder
- setSecret(String) - Method in class org.refcodes.web.UrlBuilder
- setSecure(boolean) - Method in class org.refcodes.web.ResponseCookie
-
Sets whether it be a secure HTTP cookie.
- setTopLevelType(TopLevelType) - Method in interface org.refcodes.web.TopLevelTypeAccessor.TopLevelTypeMutator
-
Sets the Media-Top-Level-Type for the Media-Top-Level-Type property.
- setTrustStoreDescriptor(TrustStoreDescriptor) - Method in class org.refcodes.web.HttpClientContextBuilder
- setUrl(Url) - Method in interface org.refcodes.web.UrlAccessor.UrlMutator
-
Sets the Url for the
Url
property. - setUserAgent(String) - Method in interface org.refcodes.web.UserAgentAccessor.UserAgentMutator
-
Sets the user agent for the user agent property.
- setVersion(String) - Method in class org.refcodes.web.ResponseCookie
-
Sets the version of this cookie.
- setVirtualHost(String) - Method in interface org.refcodes.web.VirtualHostAccessor.VirtualHostMutator
-
Sets the virtual host for the virtual host property.
- SOCKS - Enum constant in enum class org.refcodes.web.Proxy
- SOCKS4 - Enum constant in enum class org.refcodes.web.Proxy
- SOCKS5 - Enum constant in enum class org.refcodes.web.Proxy
- SSL - Enum constant in enum class org.refcodes.web.TransportLayerProtocol
-
Not considered secure enough any more.
- STATUS_ALIAS_PATH - Static variable in class org.refcodes.web.HttpBodyMap
- STATUS_CODE_PATH - Static variable in class org.refcodes.web.HttpBodyMap
- STATUS_EXCEPTION_PATH - Static variable in class org.refcodes.web.HttpBodyMap
- STATUS_MESSAGE_PATH - Static variable in class org.refcodes.web.HttpBodyMap
- STATUS_TIMESTAMP_PATH - Static variable in class org.refcodes.web.HttpBodyMap
- SWITCHING_PROTOCOLS - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
101 Switching Protocols (HTTP/1.1 - RFC 2616)
T
- TEMPORARY_REDIRECT - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
307 Temporary Redirect (HTTP/1.1 - RFC 2616)
- TemporaryRedirectException - Exception in org.refcodes.web
-
The Class TemporaryRedirectException.
- TemporaryRedirectException(String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, Url) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, Url, String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, Url, Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(Url, Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectException(Url, Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException - Exception in org.refcodes.web
-
The Class TemporaryRedirectRuntimeException.
- TemporaryRedirectRuntimeException(String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, Url) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TemporaryRedirectRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.TemporaryRedirectRuntimeException
-
Instantiates a new according exception.
- TEXT - Enum constant in enum class org.refcodes.web.TopLevelType
- TEXT_1D_INTERLEAVED_PARITYFEC - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_CACHE_MANIFEST - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_CALENDAR - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_CSS - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_CSV - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_CSV_SCHEMA - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_DIRECTORY - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_DNS - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_ECMASCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_ENCAPRTP - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_FWDRED - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_GRAMMAR_REF_LIST - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_HTML - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_JAVASCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_JCR_CND - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_MARKDOWN - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_MIZAR - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_N3 - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_PARAMETERS - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_PLAIN - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_PROVENANCE_NOTATION - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_PRS_FALLENSTEIN_RST - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_PRS_LINES_TAG - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_PRS_PROP_LOGIC - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RAPTORFEC - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RED - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RFC822_HEADERS - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RTF - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RTP_ENC_AESCM128 - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RTPLOOPBACK - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_RTX - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_SGML - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_T140 - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_TAB_SEPARATED_VALUES - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_TROFF - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_TURTLE - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_ULPFEC - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_URI_LIST - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VCARD - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_A - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_ABC - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_ASCII_ART - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_CURL - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_DEBIAN_COPYRIGHT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_DMCLIENTSCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_DVB_SUBTITLE - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_ESMERTEC_THEME_DESCRIPTOR - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_FLY - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_FMI_FLEXSTOR - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_GRAPHVIZ - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_IN3D_3DML - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_IN3D_SPOT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_IPTC_NEWSML - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_IPTC_NITF - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_LATEX_Z - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_MOTOROLA_REFLEX - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_MS_MEDIAPACKAGE - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_NET2PHONE_COMMCENTER_COMMAND - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_RADISYS_MSML_BASIC_LAYOUT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_SI_URICATALOGUE - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_SUN_J2ME_APP_DESCRIPTOR - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_TROLLTECH_LINGUIST - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_WAP_SI - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_WAP_SL - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_WAP_WML - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_VND_WAP_WMLSCRIPT - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_XML - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_XML_EXTERNAL_PARSED_ENTITY - Enum constant in enum class org.refcodes.web.MediaType
- TEXT_YAML - Enum constant in enum class org.refcodes.web.MediaType
- TextMediaTypeFactory - Class in org.refcodes.web
-
Implements the
MediaTypeFactory
for Media-Type "text/plain" (MediaType.TEXT_PLAIN
). - TextMediaTypeFactory() - Constructor for class org.refcodes.web.TextMediaTypeFactory
- TLS - Enum constant in enum class org.refcodes.web.TransportLayerProtocol
-
Currently considered secure enough.
- toBasicAuthRealm() - Method in interface org.refcodes.web.HeaderFields
-
Extracts the real (if any) from the
HeaderField.WWW_AUTHENTICATE
Header-Field (HeaderFields.getAuthenticate()
). - toBodyFormFields() - Method in class org.refcodes.web.FormFields
-
Produces an HTTP Form-Fields body
String
form the herein contain HTTP query fields. - toContentLength() - Method in class org.refcodes.web.FormFields
-
Calculates the length (number of characters) of the
FormFields
when used for a HTTP-Body as ofFormFields.toBodyFormFields()
. - toContentType() - Method in interface org.refcodes.web.ContentTypeAccessor.ContentTypeProvider
-
Returns the
ContentType
instance from the implementing instance. - toContentType() - Method in enum class org.refcodes.web.MediaType
-
Returns a
ContentType
instance from the available data. - toElementName(Class<?>) - Method in class org.refcodes.web.JsonMediaTypeFactory
-
Creates an element name for the class.
- toField(Enum<?>) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.toField(String)
though using the provided enumeration'sEnum.toString()
method to determine the key. - toField(String) - Method in interface org.refcodes.web.HttpFields
-
This method returns a single
String
(instead of returning aList
ofString
instances when callingMap.get(Object)
) where the elements of the filed are separated by theDelimiter.HTTP_HEADER_ELEMENTS
and concatenated as a singleString
. - toHeaderField(Object) - Method in class org.refcodes.web.AbstractHeaderFields
-
Normalizes the case of the provided Header-Field to conform to the
HeaderField.getName()
format if possible. - toHeaderField(String) - Static method in enum class org.refcodes.web.HeaderField
-
Retrieves the
HeaderField
which corresponds to the given HTTP Header-Field name. - toHeaderFields(Map<String, List<String>>) - Method in interface org.refcodes.web.HeaderFields
-
Copies the Header-Fields into the provided
Map
. - toHeaderFields(Map<String, List<String>>, HeaderFields<?, ?>) - Static method in class org.refcodes.web.AbstractHeaderFields
-
Copies the provided "from" fields into the provided "to" fields.
- toHost() - Method in class org.refcodes.web.Url
-
Returns the "host" depending on whether an IP-Address has been provided or a host name.
- toHttpAuthorization() - Method in interface org.refcodes.web.AuthTypeCredentials
-
Creates a
HeaderField.AUTHORIZATION
HTTP Header-Field value from theAuthTypeCredentials
instance. - toHttpAuthorization() - Method in class org.refcodes.web.BasicAuthCredentials
-
Creates a
HeaderField.AUTHORIZATION
HTTP Header-Field value from theAuthTypeCredentials
instance. - toHttpAuthorization() - Method in class org.refcodes.web.BearerAuthCredentials
-
Creates a
HeaderField.AUTHORIZATION
HTTP Header-Field value from theAuthTypeCredentials
instance. - toHttpBody() - Method in interface org.refcodes.web.HttpBodyAccessor.HttpBodyProvider
-
Converts an object representing the HTTP body to a
String
instance. - toHttpBody() - Method in class org.refcodes.web.HttpClientRequest
-
Automatically sets the
ContentType
to theRequestHeaderFields
retrieved fromAbstractHttpRequest.getHeaderFields()
. - toHttpBody() - Method in class org.refcodes.web.HttpServerResponse
-
Converts an object representing the HTTP body to a
String
instance. - toHttpCookie() - Method in interface org.refcodes.web.Cookie
-
Returns the cookie to be assigned to a cookie Header-Field.
- toHttpCookie() - Method in class org.refcodes.web.RequestCookie
-
Returns the cookie to be assigned to a cookie Header-Field.
- toHttpCookie() - Method in class org.refcodes.web.ResponseCookie
-
Returns the cookie to be assigned to a cookie Header-Field.
- toHttpCookies() - Method in interface org.refcodes.web.HeaderFields
-
Creates a HTTP Header-Field value from the herein stored
Cookie
instances. - toHttpHeaderField(String) - Static method in enum class org.refcodes.web.HeaderField
-
Normalizes the input HTTP Header-Field to match the case of the Header-Fields as defined in this
HeaderField
enumeration. - toHttpInputStream() - Method in interface org.refcodes.web.HttpInputStreamAccessor.HttpInputStreamProvider
-
Returns the
InputStream
instance representing the HTTP body from the implementing instance. - toHttpMediaType() - Method in class org.refcodes.web.ContentType
-
Returns the HTTP media type: It consists of the Media-Top-Level-Type (
ContentType.getTopLevelType()
and the Media-Subtype (ContentType.getMediaType()
) as well as some (optional) suffixed parameters (as ofPathMapBuilderImpl.keySet()
andPathMapBuilderImpl.get(Object)
, mutable viaPathMapBuilderImpl.put(Object, Object)
) all being concatenated in an HTTP valid manner, such as: "application/json;charset=UTF-8". - toHttpMediaType() - Method in interface org.refcodes.web.HttpMediaType
-
Returns the HTTP media type: It consists of the Media-Top-Level-Type and the Media-Subtype as well as some (optional) suffixed parameters all being concatenated in an HTTP valid manner, such as: "application/json;charset=UTF-8".
- toHttpMediaType() - Method in interface org.refcodes.web.HttpMediaTypeAccessor.HttpMediaTypeProvider
-
A provider interface provides a "toSomething(?)"
- toHttpMediaType() - Method in enum class org.refcodes.web.MediaType
-
Returns the Media-Type / MIME-Type as expected by the HTTP protocol.
- toHttpMediaType(Properties) - Method in enum class org.refcodes.web.MediaType
-
Similar to
MediaType.toHttpMediaType()
with the provided parameters suffixed in an HTTP heder field's synatx. - toHttpStatusCode(int) - Static method in enum class org.refcodes.web.HttpStatusCode
-
Determines the HTTP success code from the given value by evaluating the
HttpStatusCode.getStatusCode()
property. - toHttpStatusCode(StatusCodeAccessor<Integer>) - Static method in enum class org.refcodes.web.HttpStatusCode
-
Determines the HTTP success code from the given HTTP Status-Code property by evaluating the
HttpStatusCode.getStatusCode()
property. - toHttpStatusException(String) - Method in enum class org.refcodes.web.HttpStatusCode
-
If the status is an erroneous status as of
HttpStatusCode.isErrorStatus()
, then this method creates the accordingHttpStatusException
exception. - toHttpStatusRuntimeException(String) - Method in enum class org.refcodes.web.HttpStatusCode
-
If the status is an erroneous status as of
HttpStatusCode.isErrorStatus()
, then this method creates the accordingHttpStatusRuntimeException
exception. - toHttpSuccessCode(int) - Static method in enum class org.refcodes.web.HttpSuccessCode
-
Determines the HTTP success code from the given value by evaluating the
HttpSuccessCode.getStatusCode()
property. - toHttpSuccessCode(StatusCodeAccessor<Integer>) - Static method in enum class org.refcodes.web.HttpSuccessCode
-
Determines the HTTP success code from the given HTTP Status-Code property by evaluating the
HttpSuccessCode.getStatusCode()
property. - toHttpUrl() - Method in class org.refcodes.web.Url
- TOKEN_EXCHANGE - Enum constant in enum class org.refcodes.web.GrantType
-
Use Token Exchange (flow for OAuth 2.0 Token Exchange "
urn:ietf:params:oauth:grant-type:token-exchange
" Grant). - TOKEN_TYPE - Enum constant in enum class org.refcodes.web.HeaderField
-
Token type, see also
TokenType
. - TOKEN_TYPE - Enum constant in enum class org.refcodes.web.OauthField
-
Token type, see also
TokenType
. "... - TokenCredentials - Interface in org.refcodes.web
-
The Interface TokenCredentials.
- TokenType - Enum Class in org.refcodes.web
-
The Enum TokenType.
- toLocator() - Method in class org.refcodes.web.Url
-
Creates the locator part from the
Url
instance's state, excluding the fragment or the query fields. - toMarshaled(Object) - Method in class org.refcodes.web.FormMediaTypeFactory
- toMarshaled(Object) - Method in class org.refcodes.web.JsonMediaTypeFactory
- toMarshaled(Object) - Method in class org.refcodes.web.TextMediaTypeFactory
- toMarshaled(Object) - Method in class org.refcodes.web.YamlMediaTypeFactory
- toMarshaled(SRC) - Method in class org.refcodes.web.HtmlMediaTypeFactory
- toMarshaled(SRC) - Method in class org.refcodes.web.XmlMediaTypeFactory
- toMarshaled(SRC, Map<String, String>) - Method in class org.refcodes.web.HtmlMediaTypeFactory
- toMarshaled(SRC, Map<String, String>) - Method in class org.refcodes.web.XmlMediaTypeFactory
- toMediaTypeFactory(MediaType) - Method in interface org.refcodes.web.MediaTypeFactoryLookup
-
Retrieves the
MediaTypeFactory
related to the givenMediaType
or null if there is none suchMediaTypeFactory
. - toPlainJson(String) - Method in class org.refcodes.web.JsonMediaTypeFactory
-
Removes any prefixed variable declaration.
- TopLevelType - Enum Class in org.refcodes.web
-
The
TopLevelType
is the top-level part of a HTTP Media-Type. - TopLevelTypeAccessor - Interface in org.refcodes.web
-
Provides an accessor for a Media-Top-Level-Type property.
- TopLevelTypeAccessor.TopLevelTypeBuilder<B extends TopLevelTypeAccessor.TopLevelTypeBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a Media-Top-Level-Type property returning the builder for applying multiple build operations.
- TopLevelTypeAccessor.TopLevelTypeMutator - Interface in org.refcodes.web
-
Provides a mutator for a Media-Top-Level-Type property.
- TopLevelTypeAccessor.TopLevelTypeProperty - Interface in org.refcodes.web
-
Provides a Media-Top-Level-Type property.
- toProtocol() - Method in class org.refcodes.web.HttpServerContextBuilder
-
Retrieves the protocol representation from the
Scheme
. - toProtocol() - Method in interface org.refcodes.web.SchemeAccessor
-
Retrieves the protocol representation from the
Scheme
. - toProtocol() - Method in class org.refcodes.web.Url
-
Retrieves the protocol representation from the
Scheme
. - toProxySettings(EnvironmentVariable, SystemProperty, SystemProperty, Scheme) - Static method in enum class org.refcodes.web.Proxy
-
To proxy settings.
- toScheme(String) - Static method in enum class org.refcodes.web.TransportLayerProtocol
-
Determines the HTTP
Scheme
from the provided protocol. - toString() - Method in class org.refcodes.web.BasicAuthCredentials
- toString() - Method in class org.refcodes.web.BearerAuthCredentials
- toString() - Method in class org.refcodes.web.ContentType
- toString() - Method in class org.refcodes.web.HttpClientRequest
- toString() - Method in class org.refcodes.web.HttpClientResponse
- toString() - Method in class org.refcodes.web.HttpServerRequest
- toString() - Method in class org.refcodes.web.HttpServerResponse
- toString() - Method in enum class org.refcodes.web.MediaType
- toString() - Method in class org.refcodes.web.OauthToken
- toString() - Method in class org.refcodes.web.RequestCookie
- toString() - Method in class org.refcodes.web.ResponseCookie
- toString() - Method in class org.refcodes.web.Url
- toString() - Method in class org.refcodes.web.UrlBuilder
- toTruncatePath(String) - Static method in class org.refcodes.web.Url
-
Removes any leading and trailing path delimiters (as of
Delimiter.PATH
). - toTruncatePathPrefix(String) - Static method in class org.refcodes.web.Url
-
Removes any leading path delimiters (as of
Delimiter.PATH
). - toTruncatePathSuffix(String) - Static method in class org.refcodes.web.Url
-
Removes any trailing path delimiters (as of
Delimiter.PATH
). - toUnboxed(String) - Method in class org.refcodes.web.JsonMediaTypeFactory
-
Unboxes any enveloped JSON.
- toUnmarshaled(String, Class<T>) - Method in class org.refcodes.web.FormMediaTypeFactory
- toUnmarshaled(String, Class<T>) - Method in class org.refcodes.web.HtmlMediaTypeFactory
- toUnmarshaled(String, Class<T>) - Method in class org.refcodes.web.JsonMediaTypeFactory
- toUnmarshaled(String, Class<T>) - Method in class org.refcodes.web.TextMediaTypeFactory
-
To unmarshaled.
- toUnmarshaled(String, Class<T>) - Method in class org.refcodes.web.XmlMediaTypeFactory
- toUnmarshaled(String, Class<T>) - Method in class org.refcodes.web.YamlMediaTypeFactory
- toUnmarshaled(String, Class<T>, Map<String, String>) - Method in class org.refcodes.web.HtmlMediaTypeFactory
- toUnmarshaled(String, Class<T>, Map<String, String>) - Method in class org.refcodes.web.XmlMediaTypeFactory
- toUrl() - Method in class org.refcodes.web.UrlSugar
-
Creates an empty
UrlBuilder
, make sure to set required attributes for a valid URL. - toUrl(String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
from the provided URLString
. - toUrl(String, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, int) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, int, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, int, String, FormFields) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, int, String, FormFields, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, String, FormFields) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(String, String, String, FormFields, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(URL) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
from the providedURL
instance. - toUrl(Scheme, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, int) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, int, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, int, String, FormFields) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, int, String, FormFields, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, String, FormFields) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toUrl(Scheme, String, String, FormFields, String) - Method in class org.refcodes.web.UrlSugar
-
Constructs an
UrlBuilder
with the common attributes. - toURL() - Method in class org.refcodes.web.Url
- toUrlQueryString() - Method in class org.refcodes.web.FormFields
-
Produces an HTTP Query-String form the herein contain HTTP query fields.
- toVariableDeclaration(Class<?>) - Method in class org.refcodes.web.JsonMediaTypeFactory
-
Returns the JSON specific assignment declaration for the given class.
- toVerbose() - Method in enum class org.refcodes.web.HttpStatusCode
-
Returns the verbose text for the according HTTP-Status-Code.
- TRACE - Enum constant in enum class org.refcodes.web.HttpMethod
- TransportLayerProtocol - Enum Class in org.refcodes.web
-
Transport Layer Security Protocols (TLS-Protocols) known by the herein contained libraries.
- TYPE_ANNOTATION - Static variable in interface org.refcodes.web.MediaTypeFactory
U
- UMA_TICKET - Enum constant in enum class org.refcodes.web.GrantType
-
Use UMA "
urn:ietf:params:oauth:grant-type:uma-ticket
" Grant (flow for UMA Grant). - UNASSIGNED_CLIENT_ERROR_421 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
421 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_425 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
425 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_426 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
426 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_427 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
427 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_428 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
428 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_429 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
429 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_430 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
430 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_431 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
431 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_432 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
432 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_433 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
433 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_434 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
434 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_435 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
435 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_436 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
436 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_437 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
437 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_438 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
438 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_439 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
439 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_440 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
440 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_441 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
441 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_442 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
442 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_443 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
443 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_444 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
444 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_445 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
445 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_446 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
446 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_447 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
447 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_448 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
448 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_449 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
449 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_450 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
450 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_452 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
452 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_453 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
453 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_454 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
454 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_455 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
455 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_456 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
456 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_457 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
457 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_458 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
458 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_459 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
459 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_460 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
460 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_461 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
461 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_462 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
462 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_463 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
463 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_464 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
464 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_465 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
465 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_466 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
466 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_467 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
467 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_468 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
468 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_469 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
469 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_470 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
470 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_471 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
471 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_472 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
472 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_473 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
473 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_474 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
474 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_475 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
475 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_476 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
476 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_477 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
477 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_478 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
478 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_479 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
479 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_480 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
480 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_481 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
481 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_482 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
482 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_483 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
483 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_484 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
484 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_485 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
485 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_486 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
486 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_487 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
487 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_488 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
488 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_489 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
489 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_490 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
490 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_491 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
491 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_492 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
492 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_493 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
493 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_494 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
494 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_495 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
495 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_496 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
496 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_497 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
497 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_498 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
498 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_CLIENT_ERROR_499 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
499 Unassigned client error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_103 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
103 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_104 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
104 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_105 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
105 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_106 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
106 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_107 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
107 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_108 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
108 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_109 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
109 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_110 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
110 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_111 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
111 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_112 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
112 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_113 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
113 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_114 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
114 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_115 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
115 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_116 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
116 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_117 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
117 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_118 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
118 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_119 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
119 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_120 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
120 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_121 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
121 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_122 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
122 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_123 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
123 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_124 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
124 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_125 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
125 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_126 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
126 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_127 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
127 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_128 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
128 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_129 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
129 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_130 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
130 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_131 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
131 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_132 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
132 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_133 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
133 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_134 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
134 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_135 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
135 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_136 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
136 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_137 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
137 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_138 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
138 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_139 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
139 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_140 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
140 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_141 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
141 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_142 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
142 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_143 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
143 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_144 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
144 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_145 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
145 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_146 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
146 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_147 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
147 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_148 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
148 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_149 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
149 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_150 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
150 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_151 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
151 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_152 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
152 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_153 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
153 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_154 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
154 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_155 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
155 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_156 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
156 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_157 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
157 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_158 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
158 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_159 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
159 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_160 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
160 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_161 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
161 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_162 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
162 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_163 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
163 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_164 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
164 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_165 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
165 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_166 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
166 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_167 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
167 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_168 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
168 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_169 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
169 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_170 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
170 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_171 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
171 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_172 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
172 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_173 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
173 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_174 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
174 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_175 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
175 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_176 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
176 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_177 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
177 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_178 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
178 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_179 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
179 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_180 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
180 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_181 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
181 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_182 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
182 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_183 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
183 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_184 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
184 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_185 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
185 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_186 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
186 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_187 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
187 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_188 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
188 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_189 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
189 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_190 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
190 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_191 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
191 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_192 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
192 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_193 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
193 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_194 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
194 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_195 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
195 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_196 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
196 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_197 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
197 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_198 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
198 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_INFORMATIONAL_199 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
199 Unassigned informational (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_600 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
600 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_601 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
601 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_602 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
602 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_603 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
603 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_604 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
604 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_605 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
605 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_606 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
606 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_607 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
607 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_608 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
608 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_609 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
609 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_610 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
610 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_611 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
611 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_612 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
612 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_613 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
613 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_614 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
614 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_615 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
615 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_616 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
616 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_617 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
617 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_618 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
618 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_619 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
619 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_620 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
620 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_621 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
621 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_622 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
622 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_623 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
623 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_624 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
624 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_625 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
625 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_626 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
626 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_627 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
627 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_628 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
628 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_629 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
629 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_630 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
630 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_631 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
631 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_632 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
632 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_633 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
633 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_634 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
634 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_635 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
635 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_636 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
636 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_637 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
637 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_638 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
638 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_639 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
639 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_640 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
640 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_641 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
641 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_642 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
642 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_643 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
643 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_644 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
644 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_645 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
645 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_646 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
646 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_647 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
647 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_648 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
648 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_649 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
649 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_650 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
650 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_651 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
651 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_652 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
652 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_653 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
653 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_654 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
654 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_655 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
655 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_656 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
656 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_657 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
657 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_658 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
658 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_659 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
659 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_660 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
660 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_661 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
661 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_662 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
662 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_663 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
663 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_664 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
664 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_665 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
665 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_666 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
666 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_667 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
667 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_668 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
668 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_669 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
669 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_670 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
670 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_671 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
671 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_672 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
672 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_673 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
673 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_674 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
674 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_675 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
675 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_676 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
676 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_677 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
677 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_678 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
678 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_679 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
679 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_680 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
680 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_681 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
681 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_682 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
682 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_683 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
683 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_684 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
684 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_685 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
685 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_686 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
686 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_687 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
687 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_688 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
688 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_689 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
689 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_690 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
690 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_691 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
691 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_692 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
692 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_693 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
693 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_694 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
694 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_695 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
695 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_696 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
696 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_697 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
697 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_698 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
698 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_699 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
699 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_700 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
700 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_701 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
701 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_702 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
702 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_703 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
703 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_704 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
704 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_705 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
705 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_706 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
706 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_707 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
707 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_708 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
708 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_709 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
709 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_710 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
710 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_711 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
711 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_712 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
712 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_713 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
713 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_714 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
714 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_715 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
715 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_716 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
716 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_717 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
717 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_718 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
718 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_719 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
719 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_720 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
720 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_721 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
721 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_722 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
722 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_723 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
723 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_724 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
724 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_725 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
725 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_726 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
726 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_727 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
727 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_728 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
728 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_729 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
729 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_730 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
730 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_731 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
731 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_732 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
732 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_733 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
733 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_734 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
734 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_735 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
735 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_736 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
736 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_737 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
737 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_738 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
738 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_739 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
739 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_740 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
740 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_741 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
741 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_742 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
742 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_743 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
743 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_744 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
744 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_745 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
745 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_746 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
746 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_747 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
747 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_748 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
748 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_749 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
749 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_750 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
750 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_751 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
751 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_752 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
752 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_753 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
753 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_754 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
754 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_755 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
755 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_756 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
756 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_757 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
757 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_758 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
758 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_759 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
759 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_760 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
760 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_761 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
761 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_762 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
762 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_763 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
763 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_764 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
764 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_765 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
765 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_766 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
766 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_767 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
767 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_768 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
768 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_769 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
769 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_770 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
770 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_771 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
771 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_772 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
772 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_773 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
773 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_774 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
774 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_775 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
775 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_776 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
776 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_777 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
777 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_778 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
778 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_779 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
779 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_780 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
780 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_781 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
781 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_782 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
782 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_783 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
783 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_784 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
784 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_785 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
785 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_786 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
786 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_787 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
787 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_788 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
788 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_789 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
789 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_790 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
790 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_791 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
791 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_792 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
792 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_793 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
793 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_794 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
794 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_795 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
795 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_796 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
796 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_797 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
797 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_798 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
798 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_799 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
799 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_800 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
800 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_801 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
801 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_802 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
802 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_803 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
803 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_804 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
804 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_805 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
805 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_806 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
806 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_807 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
807 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_808 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
808 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_809 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
809 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_810 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
810 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_811 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
811 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_812 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
812 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_813 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
813 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_814 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
814 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_815 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
815 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_816 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
816 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_817 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
817 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_818 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
818 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_819 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
819 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_820 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
820 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_821 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
821 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_822 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
822 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_823 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
823 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_824 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
824 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_825 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
825 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_826 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
826 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_827 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
827 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_828 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
828 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_829 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
829 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_830 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
830 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_831 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
831 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_832 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
832 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_833 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
833 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_834 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
834 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_835 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
835 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_836 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
836 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_837 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
837 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_838 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
838 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_839 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
839 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_840 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
840 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_841 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
841 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_842 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
842 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_843 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
843 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_844 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
844 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_845 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
845 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_846 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
846 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_847 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
847 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_848 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
848 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_849 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
849 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_850 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
850 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_851 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
851 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_852 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
852 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_853 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
853 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_854 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
854 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_855 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
855 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_856 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
856 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_857 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
857 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_858 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
858 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_859 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
859 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_860 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
860 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_861 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
861 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_862 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
862 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_863 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
863 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_864 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
864 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_865 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
865 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_866 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
866 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_867 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
867 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_868 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
868 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_869 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
869 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_870 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
870 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_871 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
871 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_872 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
872 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_873 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
873 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_874 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
874 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_875 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
875 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_876 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
876 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_877 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
877 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_878 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
878 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_879 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
879 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_880 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
880 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_881 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
881 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_882 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
882 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_883 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
883 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_884 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
884 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_885 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
885 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_886 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
886 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_887 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
887 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_888 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
888 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_889 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
889 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_890 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
890 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_891 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
891 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_892 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
892 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_893 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
893 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_894 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
894 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_895 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
895 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_896 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
896 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_897 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
897 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_898 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
898 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_899 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
899 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_903 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
903 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_904 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
904 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_905 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
905 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_906 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
906 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_907 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
907 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_908 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
908 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_909 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
909 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_910 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
910 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_911 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
911 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_912 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
912 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_913 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
913 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_914 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
914 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_915 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
915 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_916 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
916 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_917 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
917 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_918 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
918 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_919 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
919 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_920 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
920 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_921 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
921 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_922 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
922 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_923 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
923 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_924 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
924 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_925 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
925 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_926 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
926 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_927 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
927 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_928 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
928 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_929 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
929 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_930 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
930 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_931 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
931 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_932 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
932 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_933 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
933 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_934 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
934 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_935 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
935 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_936 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
936 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_937 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
937 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_938 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
938 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_939 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
939 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_940 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
940 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_941 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
941 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_942 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
942 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_943 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
943 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_944 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
944 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_945 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
945 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_946 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
946 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_947 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
947 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_948 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
948 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_949 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
949 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_950 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
950 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_951 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
951 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_952 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
952 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_953 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
953 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_954 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
954 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_955 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
955 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_956 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
956 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_957 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
957 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_958 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
958 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_959 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
959 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_960 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
960 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_961 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
961 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_962 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
962 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_963 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
963 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_964 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
964 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_965 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
965 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_966 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
966 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_967 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
967 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_968 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
968 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_969 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
969 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_970 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
970 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_971 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
971 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_972 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
972 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_973 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
973 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_974 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
974 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_975 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
975 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_976 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
976 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_977 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
977 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_978 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
978 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_979 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
979 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_980 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
980 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_981 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
981 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_982 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
982 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_983 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
983 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_984 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
984 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_985 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
985 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_986 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
986 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_987 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
987 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_988 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
988 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_989 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
989 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_990 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
990 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_991 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
991 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_992 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
992 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_993 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
993 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_994 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
994 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_995 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
995 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_996 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
996 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_997 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
997 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_998 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
998 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_LEGACY_999 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
999 Unassigned legacy (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_306 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
306 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_308 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
308 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_309 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
309 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_310 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
310 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_311 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
311 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_312 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
312 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_313 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
313 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_314 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
314 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_315 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
315 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_316 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
316 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_317 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
317 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_318 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
318 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_319 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
319 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_320 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
320 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_321 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
321 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_322 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
322 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_323 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
323 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_324 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
324 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_325 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
325 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_326 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
326 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_327 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
327 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_328 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
328 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_329 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
329 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_330 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
330 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_331 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
331 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_332 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
332 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_333 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
333 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_334 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
334 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_335 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
335 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_336 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
336 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_337 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
337 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_338 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
338 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_339 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
339 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_340 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
340 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_341 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
341 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_342 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
342 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_343 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
343 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_344 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
344 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_345 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
345 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_346 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
346 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_347 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
347 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_348 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
348 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_349 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
349 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_350 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
350 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_351 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
351 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_352 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
352 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_353 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
353 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_354 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
354 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_355 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
355 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_356 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
356 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_357 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
357 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_358 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
358 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_359 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
359 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_360 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
360 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_361 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
361 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_362 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
362 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_363 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
363 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_364 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
364 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_365 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
365 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_366 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
366 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_367 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
367 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_368 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
368 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_369 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
369 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_370 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
370 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_371 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
371 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_372 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
372 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_373 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
373 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_374 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
374 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_375 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
375 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_376 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
376 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_377 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
377 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_378 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
378 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_379 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
379 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_380 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
380 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_381 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
381 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_382 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
382 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_383 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
383 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_384 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
384 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_385 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
385 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_386 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
386 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_387 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
387 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_388 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
388 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_389 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
389 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_390 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
390 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_391 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
391 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_392 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
392 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_393 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
393 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_394 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
394 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_395 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
395 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_396 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
396 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_397 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
397 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_398 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
398 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_REDIRECTION_399 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
399 Unassigned redirection (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_506 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
506 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_508 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
508 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_509 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
509 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_510 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
510 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_511 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
511 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_512 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
512 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_513 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
513 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_514 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
514 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_515 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
515 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_516 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
516 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_517 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
517 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_518 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
518 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_519 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
519 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_520 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
520 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_521 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
521 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_522 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
522 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_523 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
523 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_524 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
524 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_525 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
525 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_526 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
526 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_527 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
527 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_528 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
528 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_529 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
529 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_530 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
530 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_531 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
531 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_532 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
532 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_533 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
533 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_534 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
534 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_535 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
535 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_536 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
536 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_537 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
537 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_538 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
538 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_539 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
539 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_540 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
540 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_541 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
541 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_542 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
542 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_543 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
543 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_544 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
544 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_545 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
545 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_546 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
546 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_547 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
547 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_548 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
548 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_549 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
549 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_550 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
550 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_551 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
551 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_552 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
552 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_553 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
553 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_554 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
554 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_555 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
555 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_556 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
556 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_557 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
557 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_558 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
558 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_559 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
559 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_560 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
560 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_561 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
561 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_562 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
562 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_563 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
563 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_564 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
564 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_565 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
565 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_566 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
566 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_567 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
567 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_568 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
568 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_569 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
569 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_570 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
570 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_571 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
571 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_572 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
572 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_573 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
573 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_574 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
574 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_575 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
575 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_576 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
576 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_577 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
577 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_578 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
578 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_579 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
579 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_580 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
580 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_581 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
581 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_582 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
582 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_583 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
583 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_584 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
584 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_585 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
585 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_586 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
586 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_587 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
587 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_588 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
588 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_589 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
589 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_590 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
590 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_591 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
591 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_592 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
592 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_593 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
593 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_594 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
594 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_595 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
595 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_596 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
596 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_597 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
597 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_598 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
598 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SERVER_ERROR_599 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
599 Unassigned server error (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_208 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
208 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_209 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
209 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_210 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
210 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_211 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
211 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_212 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
212 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_213 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
213 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_214 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
214 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_215 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
215 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_216 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
216 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_217 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
217 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_218 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
218 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_219 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
219 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_220 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
220 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_221 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
221 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_222 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
222 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_223 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
223 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_224 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
224 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_225 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
225 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_226 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
226 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_227 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
227 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_228 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
228 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_229 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
229 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_230 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
230 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_231 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
231 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_232 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
232 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_233 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
233 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_234 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
234 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_235 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
235 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_236 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
236 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_237 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
237 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_238 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
238 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_239 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
239 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_240 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
240 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_241 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
241 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_242 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
242 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_243 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
243 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_244 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
244 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_245 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
245 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_246 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
246 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_247 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
247 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_248 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
248 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_249 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
249 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_250 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
250 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_251 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
251 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_252 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
252 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_253 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
253 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_254 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
254 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_255 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
255 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_256 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
256 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_257 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
257 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_258 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
258 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_259 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
259 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_260 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
260 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_261 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
261 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_262 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
262 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_263 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
263 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_264 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
264 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_265 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
265 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_266 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
266 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_267 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
267 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_268 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
268 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_269 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
269 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_270 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
270 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_271 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
271 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_272 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
272 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_273 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
273 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_274 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
274 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_275 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
275 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_276 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
276 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_277 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
277 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_278 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
278 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_279 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
279 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_280 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
280 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_281 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
281 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_282 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
282 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_283 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
283 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_284 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
284 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_285 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
285 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_286 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
286 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_287 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
287 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_288 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
288 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_289 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
289 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_290 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
290 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_291 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
291 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_292 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
292 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_293 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
293 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_294 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
294 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_295 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
295 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_296 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
296 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_297 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
297 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_298 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
298 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UNASSIGNED_SUCCESS_299 - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
299 Unassigned success (unknown or undefined) HTTP-Status-Code.
- UnassignedStatusCodeException - Exception in org.refcodes.web
-
The Class UnassignedStatusCodeException.
- UnassignedStatusCodeException(int, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(int, Url, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(int, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, Throwable, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, Url) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, Url, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, Url, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(String, int, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeException(Throwable, int, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException - Exception in org.refcodes.web
-
The Class UnassignedStatusCodeRuntimeException.
- UnassignedStatusCodeRuntimeException(int, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(int, Url, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(int, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, Throwable, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, Url) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, Url, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, Url, Throwable) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(String, int, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UnassignedStatusCodeRuntimeException(Throwable, int, String) - Constructor for exception org.refcodes.web.UnassignedStatusCodeRuntimeException
-
Instantiates a new according exception.
- UNAUTHORIZED - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
401 Unauthorized (HTTP/1.0 - RFC 1945)
- UnauthorizedException - Exception in org.refcodes.web
-
The Class UnauthorizedException.
- UnauthorizedException(String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, Throwable) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, Url) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, Url, String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(Throwable) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(Url, Throwable) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException - Exception in org.refcodes.web
-
The Class UnauthorizedRuntimeException.
- UnauthorizedRuntimeException(String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UnauthorizedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnauthorizedRuntimeException
-
Instantiates a new according exception.
- UNAVAILABLE_FOR_LEGAL_REASONS - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
451 Unavailable For Legal Reasons (HTTP - RFC 7725).
- UnavailableForLegalReasonsException - Exception in org.refcodes.web
-
The Class UnavailableForLegalReasonsException.
- UnavailableForLegalReasonsException(String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, Url) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, Url, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(Url, Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException - Exception in org.refcodes.web
-
The Class UnavailableForLegalReasonsRuntimeException.
- UnavailableForLegalReasonsRuntimeException(String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, Url) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UnavailableForLegalReasonsRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnavailableForLegalReasonsRuntimeException
-
Instantiates a new according exception.
- UNKNOWN - Enum constant in enum class org.refcodes.web.TopLevelType
- UNPROCESSABLE_ENTITY - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
422 Unprocessable Entity (WebDAV - RFC 2518).
- UnprocessableEntityException - Exception in org.refcodes.web
-
The Class UnprocessableEntityException.
- UnprocessableEntityException(String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, Url) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, Url, String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(Url, Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException - Exception in org.refcodes.web
-
The Class UnprocessableEntityRuntimeException.
- UnprocessableEntityRuntimeException(String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, Url) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UnprocessableEntityRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnprocessableEntityRuntimeException
-
Instantiates a new according exception.
- UNSUPPORTED_MEDIA_TYPE - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
415 Unsupported Media Type (HTTP/1.1 - RFC 2616)
- UnsupportedMediaTypeException - Exception in org.refcodes.web
-
Thrown in case a Media-Type has been provied which is not supported.
- UnsupportedMediaTypeException(String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, Url) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, Url, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(Url, Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException - Exception in org.refcodes.web
-
Thrown in case a Media-Type has been provied which is not supported.
- UnsupportedMediaTypeRuntimeException(String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, Url) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- UnsupportedMediaTypeRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UnsupportedMediaTypeRuntimeException
-
Instantiates a new according exception.
- updateToken(HttpBodyMap) - Method in class org.refcodes.web.OauthToken
-
Sets (updates) the internal fields with the data from the
HttpBodyMap
as of theOauthField
definitions. - Url - Class in org.refcodes.web
-
The
Url
class represents an immutable URL: An URL looks something like this: "scheme://[identity[:secret]@]host[:port][/path][? - Url() - Constructor for class org.refcodes.web.Url
-
Default constructor.
- Url(String) - Constructor for class org.refcodes.web.Url
- Url(String, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, int) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, int, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, int, String, FormFields) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, int, String, FormFields, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, String, FormFields) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, String, String, FormFields, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(String, FormFields) - Constructor for class org.refcodes.web.Url
- Url(String, FormFields, String) - Constructor for class org.refcodes.web.Url
- Url(URL) - Constructor for class org.refcodes.web.Url
- Url(Scheme, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, int) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, int, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, int, String, FormFields) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, int, String, FormFields, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, String, FormFields) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Scheme, String, String, FormFields, String) - Constructor for class org.refcodes.web.Url
-
Constructs an
Url
with the common attributes. - Url(Url) - Constructor for class org.refcodes.web.Url
- Url(Url, String...) - Constructor for class org.refcodes.web.Url
- Url(Url, Url) - Constructor for class org.refcodes.web.Url
- UrlAccessor - Interface in org.refcodes.web
-
Provides an accessor for a
Url
property.. - UrlAccessor.UrlBuilder - Interface in org.refcodes.web
-
Provides a builder method for a
Url
property returning the builder for applying multiple build operations. - UrlAccessor.UrlMutator - Interface in org.refcodes.web
-
Provides a mutator for a
Url
property. - UrlAccessor.UrlProperty - Interface in org.refcodes.web
-
Provides a
Url
property. - UrlBuilder - Class in org.refcodes.web
-
The
UrlBuilder
extends an immutableUrl
with mutable functionality. - UrlBuilder() - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, int) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, int, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, int, String, FormFields) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, int, String, FormFields, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, String, FormFields) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, String, String, FormFields, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, FormFields) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(String, FormFields, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(URL) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, int) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, int, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, int, String, FormFields) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, int, String, FormFields, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, String, FormFields) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Scheme, String, String, FormFields, String) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Url) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Url, String...) - Constructor for class org.refcodes.web.UrlBuilder
- UrlBuilder(Url, Url) - Constructor for class org.refcodes.web.UrlBuilder
- UrlSugar - Class in org.refcodes.web
-
Declarative syntactic sugar which may be statically imported in order to allow declarative definitions for
Url
(UrlBuilder
) creation and tweaking:import static org.refcodes.web.UrlSugar
- UrlSugar() - Constructor for class org.refcodes.web.UrlSugar
- USE_PROXY - Enum constant in enum class org.refcodes.web.HttpStatusCode
-
305 Use Proxy (HTTP/1.1 - RFC 2616)
- UseProxyException - Exception in org.refcodes.web
-
The Class UseProxyException.
- UseProxyException(String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, Throwable) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, Throwable, String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, Url) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, Url, String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(Throwable) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(Throwable, String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(Url, Throwable) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UseProxyException
-
Instantiates a new according exception.
- UseProxyRuntimeException - Exception in org.refcodes.web
-
The Class UseProxyRuntimeException.
- UseProxyRuntimeException(String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, Url) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(Throwable) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- UseProxyRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.UseProxyRuntimeException
-
Instantiates a new according exception.
- USER_AGENT - Enum constant in enum class org.refcodes.web.HeaderField
- USER_NAME - Enum constant in enum class org.refcodes.web.OauthField
-
"...
- UserAgentAccessor - Interface in org.refcodes.web
-
Provides an accessor for a user agent property.
- UserAgentAccessor.UserAgentBuilder<B extends UserAgentAccessor.UserAgentBuilder<B>> - Interface in org.refcodes.web
-
Provides a builder method for a user agent property returning the builder for applying multiple build operations.
- UserAgentAccessor.UserAgentMutator - Interface in org.refcodes.web
-
Provides a mutator for a user agent property.
- UserAgentAccessor.UserAgentProperty - Interface in org.refcodes.web
-
Provides a user agent property.
- USERNAME - Enum constant in enum class org.refcodes.web.HeaderField
-
For OAuth: "...
V
- validate(String) - Method in class org.refcodes.web.BearerAuthCredentials
-
Validates the provided user-name and secret with this
BearerAuthCredentials
viaTokenCredentials.isValid(String)
. - validate(String, String) - Method in class org.refcodes.web.BasicAuthCredentials
-
Validates the provided user-name and secret with this
BasicAuthCredentials
viaBasicCredentials.isValid(String, String)
. - validate(BasicCredentials) - Method in class org.refcodes.web.BasicAuthCredentials
-
Validates the provided
BasicCredentials
with thisBasicAuthCredentials
viaBasicCredentials.isValid(BasicCredentials)
. - validate(TokenCredentials) - Method in class org.refcodes.web.BearerAuthCredentials
-
Validates the provided
TokenCredentials
with thisBearerAuthCredentials
viaTokenCredentials.isValid(TokenCredentials)
. - validate(V) - Method in interface org.refcodes.web.AuthTypeCredentials
-
Validates the provided
BasicCredentials
with thisBasicAuthCredentials
viaValidatable.isValid(Object)
. - VALUE_SELECTOR - Static variable in interface org.refcodes.web.MediaTypeFactory
- valueOf(String) - Static method in enum class org.refcodes.web.AuthType
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.BasicAuthResponse
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.ContentEncoding
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.CookieAttribute
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.GrantType
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.HeaderField
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.HttpMethod
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.HttpStatusCode
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.HttpSuccessCode
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.LoadBalancingStrategy
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.MediaType
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.MediaTypeParameter
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.OauthField
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.Proxy
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.TokenType
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.TopLevelType
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.web.TransportLayerProtocol
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class org.refcodes.web.AuthType
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.BasicAuthResponse
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.ContentEncoding
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.CookieAttribute
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.GrantType
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.HeaderField
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.HttpMethod
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.HttpStatusCode
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.HttpSuccessCode
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.LoadBalancingStrategy
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.MediaType
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.MediaTypeParameter
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.OauthField
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.Proxy
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.TokenType
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.TopLevelType
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.web.TransportLayerProtocol
-
Returns an array containing the constants of this enum class, in the order they are declared.
- VERSION - Enum constant in enum class org.refcodes.web.CookieAttribute
- VersionNotSupportedException - Exception in org.refcodes.web
-
The Class VersionNotSupportedException.
- VersionNotSupportedException(String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, Url) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, Url, String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, Url, Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(Url, Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedException(Url, Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException - Exception in org.refcodes.web
-
The Class VersionNotSupportedRuntimeException.
- VersionNotSupportedRuntimeException(String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, Url) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, Url, String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, Url, Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(String, Url, Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(Url, Throwable) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VersionNotSupportedRuntimeException(Url, Throwable, String) - Constructor for exception org.refcodes.web.VersionNotSupportedRuntimeException
-
Instantiates a new according exception.
- VIDEO - Enum constant in enum class org.refcodes.web.TopLevelType
- VIDEO_1D_INTERLEAVED_PARITYFEC - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_3GPP - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_3GPP_TT - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_3GPP2 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_BMPEG - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_BT656 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_CELB - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_DV - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_ENCAPRTP - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_EXAMPLE - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H261 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H263 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H263_1998 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H263_2000 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H264 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H264_RCDO - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H264_SVC - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_H265 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_ISO_SEGMENT - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_JPEG - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_JPEG2000 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MJ2 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MP1S - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MP2P - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MP2T - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MP4 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MP4V_ES - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MPEG4_GENERIC - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_MPV - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_NV - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_OGG - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_POINTER - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_QUICKTIME - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_RAPTORFEC - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_RTP_ENC_AESCM128 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_RTPLOOPBACK - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_RTX - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_SMPTE292M - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_ULPFEC - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VC1 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_CCTV - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DECE_HD - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DECE_MOBILE - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DECE_MP4 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DECE_PD - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DECE_SD - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DECE_VIDEO - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DIRECTV_MPEG - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DIRECTV_MPEG_TTS - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DLNA_MPEG_TTS - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_DVB_FILE - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_FVT - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_HNS_VIDEO - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_IPTVFORUM_1DPARITYFEC_1010 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_IPTVFORUM_1DPARITYFEC_2005 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_IPTVFORUM_2DPARITYFEC_1010 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_IPTVFORUM_2DPARITYFEC_2005 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_IPTVFORUM_TTSAVC - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_IPTVFORUM_TTSMPEG2 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_MOTOROLA_VIDEO - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_MOTOROLA_VIDEOP - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_MPEGURL - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_MS_PLAYREADY_MEDIA_PYV - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_NOKIA_INTERLEAVED_MULTIMEDIA - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_NOKIA_VIDEOVOIP - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_OBJECTVIDEO - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_RADGAMETTOOLS_BINK - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_RADGAMETTOOLS_SMACKER - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_SEALED_MPEG1 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_SEALED_MPEG4 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_SEALED_SWF - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_SEALEDMEDIA_SOFTSEAL_MOV - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_UVVU_MP4 - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VND_VIVO - Enum constant in enum class org.refcodes.web.MediaType
- VIDEO_VP8 - Enum constant in enum class org.refcodes.web.MediaType
- VirtualHostAccessor - Interface in org.refcodes.web
-
Provides an accessor for a virtual host property.
- VirtualHostAccessor.VirtualHostBuilder<B extends VirtualHostAccessor.VirtualHostBuilder<?>> - Interface in org.refcodes.web
-
Provides a mutator for an virtual host property.
- VirtualHostAccessor.VirtualHostMutator - Interface in org.refcodes.web
-
Provides a mutator for a virtual host property.
- VirtualHostAccessor.VirtualHostProperty - Interface in org.refcodes.web
-
Provides a virtual host property.
W
- WebException - Exception in org.refcodes.web
-
The base exception for networking related issues.
- WebException(String) - Constructor for exception org.refcodes.web.WebException
- WebException(String, String) - Constructor for exception org.refcodes.web.WebException
- WebException(String, Throwable) - Constructor for exception org.refcodes.web.WebException
- WebException(String, Throwable, String) - Constructor for exception org.refcodes.web.WebException
- WebException(Throwable) - Constructor for exception org.refcodes.web.WebException
- WebException(Throwable, String) - Constructor for exception org.refcodes.web.WebException
- WebRuntimeException - Exception in org.refcodes.web
-
The base runtime exception for networking related issues.
- WebRuntimeException(String) - Constructor for exception org.refcodes.web.WebRuntimeException
- WebRuntimeException(String, String) - Constructor for exception org.refcodes.web.WebRuntimeException
- WebRuntimeException(String, Throwable) - Constructor for exception org.refcodes.web.WebRuntimeException
- WebRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.web.WebRuntimeException
- WebRuntimeException(Throwable) - Constructor for exception org.refcodes.web.WebRuntimeException
- WebRuntimeException(Throwable, String) - Constructor for exception org.refcodes.web.WebRuntimeException
- WILDCARD - Enum constant in enum class org.refcodes.web.TopLevelType
- WILDCARD_WILDCARD - Enum constant in enum class org.refcodes.web.MediaType
- witAddCookie(String) - Method in class org.refcodes.web.ResponseHeaderFields
-
Builder method for
ResponseHeaderFields.withAddCookie(ResponseCookie)
- withAcceptCharsets(String...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept-Charset request-Header-Field
HeaderField.ACCEPT_CHARSET
. "... - withAcceptCharsets(List<String>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Accept-Charset request-Header-Field
HeaderField.ACCEPT_CHARSET
. "... - withAcceptEncodings(List<ContentEncoding>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - withAcceptEncodings(ContentEncoding...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - withAcceptLanguages(List<Locale>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.ACCEPT_LANGUAGE
: "... - withAcceptLanguages(Locale...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the the Content-Encoding entity-Header-Field
HeaderField.ACCEPT_LANGUAGE
: - withAcceptTypes(List<? extends HttpMediaType>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept request-Header-Field
HeaderField.ACCEPT
. - withAcceptTypes(HttpMediaType...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Accept request-Header-Field
HeaderField.ACCEPT
. - withAddCookie(C) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for the
HeaderFields.addCookie(Cookie)
method. - withAddCookie(String, String) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for the
HeaderFields.addCookie(String, String)
method. - withAddCookie(ResponseCookie) - Method in class org.refcodes.web.ResponseHeaderFields
-
Builder method for the
HeaderFields.addCookie(Cookie)
method. - withAddTo(Enum<?>, String) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.withAddTo(String, String)
though using the provided enumeration'sEnum.toString()
method to determine the key. - withAddTo(Enum<?>, String...) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.withAddTo(String, String...)
though using the provided enumeration'sEnum.toString()
method to determine the key. - withAddTo(Enum<?>, List<String>) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.withAddTo(String, List)
though using the provided enumeration'sEnum.toString()
method to determine the key. - withAddTo(String, String) - Method in interface org.refcodes.web.HttpFields
-
Builder method for the
HttpFields.addTo(String, String)
method. - withAddTo(String, String...) - Method in interface org.refcodes.web.HttpFields
-
Builder method for the
HttpFields.addTo(String, String...)
method. - withAddTo(String, List<String>) - Method in interface org.refcodes.web.HttpFields
-
Builder method for the
HttpFields.addTo(String, List)
method. - withAddTo(HeaderField, String) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for
HeaderFields.addTo(HeaderField, String)
. - withAddTo(HeaderField, String...) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for
HeaderFields.addTo(HeaderField, String...)
. - withAddTo(HeaderField, List<String>) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for
HeaderFields.addTo(HeaderField, List)
. - withAddToHeaderFields(String, String) - Method in interface org.refcodes.web.HttpRequestBuilder
-
Builder method for the
HeaderFieldsAccessor.getHeaderFields()
methodAbstractHeaderFields.addTo(String, String)
. - withAddToHeaderFields(String, String) - Method in interface org.refcodes.web.HttpResponseBuilder
-
Builder method for the
HeaderFieldsAccessor.getHeaderFields()
methodAbstractHeaderFields.addTo(String, String)
. - withAddToHeaderFields(String, String...) - Method in interface org.refcodes.web.HttpRequestBuilder
-
Builder method for the
HeaderFieldsAccessor.getHeaderFields()
methodHttpFields.addTo(String, String...)
. - withAddToHeaderFields(String, String...) - Method in interface org.refcodes.web.HttpResponseBuilder
-
Builder method for the
HeaderFieldsAccessor.getHeaderFields()
methodHttpFields.addTo(String, String...)
. - withAddToHeaderFields(String, List<String>) - Method in interface org.refcodes.web.HttpRequestBuilder
-
Builder method for the
HeaderFieldsAccessor.getHeaderFields()
methodHttpFields.addTo(String, List)
. - withAddToHeaderFields(String, List<String>) - Method in interface org.refcodes.web.HttpResponseBuilder
-
Builder method for the
HeaderFieldsAccessor.getHeaderFields()
methodHttpFields.addTo(String, List)
. - withAddToHeaderFields(HeaderField, String...) - Method in interface org.refcodes.web.HttpRequestBuilder
-
With add to Header-Fields.
- withAddToHeaderFields(HeaderField, List<String>) - Method in interface org.refcodes.web.HttpRequestBuilder
-
With add to Header-Fields.
- withAddToQueryFields(String, String) - Method in interface org.refcodes.web.HttpRequestBuilder
-
Builder method for the
UrlAccessor.getUrl()
'sUrl.getQueryFields()
methodHttpFields.addTo(String, String)
. - withAddToQueryFields(String, String) - Method in class org.refcodes.web.UrlBuilder
-
Adds a value to the list of values associated with the given Query-Field (key) and returns this builder as of the Builder-Pattern.
- withAddToQueryFields(String, String...) - Method in interface org.refcodes.web.HttpRequestBuilder
-
Builder method for the
UrlAccessor.getUrl()
'sUrl.getQueryFields()
methodHttpFields.addTo(String, String...)
. - withAddToQueryFields(String, String...) - Method in class org.refcodes.web.UrlBuilder
-
Adds values to the list of values associated with the given Query-Field (key) and returns this builder as of the Builder-Pattern.
- withAddToQueryFields(String, List<String>) - Method in interface org.refcodes.web.HttpRequestBuilder
-
Builder method for the
UrlAccessor.getUrl()
'sUrl.getQueryFields()
methodHttpFields.addTo(String, List)
. - withAllowMethods(List<HttpMethod>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Allow entity-Header-Field
HeaderField.ALLOW
: "... - withAllowMethods(HttpMethod...) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Allow entity-Header-Field
HeaderField.ALLOW
: "... - withAppendToPath(String) - Method in class org.refcodes.web.UrlBuilder
-
Appends a path element to the path as of the Builder-Pattern.
- withAppendToPath(String...) - Method in class org.refcodes.web.UrlBuilder
-
Appends multiple path elements to the path, automatically adding the path separator "/" as required as of the Builder-Pattern.
- withAuthenticate(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the WWW-Authenticate Response-Header-Field
HeaderField.WWW_AUTHENTICATE
: "... - withAuthorization(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - withAuthorization(String, String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - withAuthorization(AuthType, String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Authorize Request-Header-Field
HeaderField.AUTHORIZATION
: "... - withAuthType(String, String) - Method in interface org.refcodes.web.AuthTypeAccessor.AuthTypeBuilder
-
Sets the
AuthType
from the bearer and token for the Authorization-Type property. - withAuthType(AuthType) - Method in interface org.refcodes.web.AuthTypeAccessor.AuthTypeBuilder
-
Sets the
AuthType
for the Authorization-Type property. - withBaseLocator(String) - Method in interface org.refcodes.web.BaseLocatorAccessor.BaseLocatorBuilder
-
Sets the base locator for the base locator property.
- withBaseUrl(String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the givenString
. - withBaseUrl(String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the givenString
. - withBaseUrl(String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(String, String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(String, String, int) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(String, String, int)
. - withBaseUrl(String, String, int) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(String, String, int)
. - withBaseUrl(String, String, int, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(String, String, int, String)
. - withBaseUrl(String, String, int, String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(String, String, int, String)
. - withBaseUrl(String, String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(String, String, String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(URL) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Sets the base URL (protocol, host, port, path) for the base URL (protocol, host, port, path) property.
- withBaseUrl(URL) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Sets the base URL (protocol, host, port, path) for the base URL (protocol, host, port, path) property.
- withBaseUrl(Scheme, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(Scheme, String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(Scheme, String, int) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(Scheme, String, int)
. - withBaseUrl(Scheme, String, int) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(Scheme, String, int)
. - withBaseUrl(Scheme, String, int, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(Scheme, String, int, String)
. - withBaseUrl(Scheme, String, int, String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Builder method for
BaseUrlAccessor.BaseUrlMutator.setBaseUrl(Scheme, String, int, String)
. - withBaseUrl(Scheme, String, String) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(Scheme, String, String) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Same as
BaseUrlAccessor.BaseUrlBuilder.withBaseUrl(URL)
except that aMalformedURLException
may occur when creating theURL
instance from the given parameters. - withBaseUrl(Url) - Method in interface org.refcodes.web.BaseUrlAccessor.BaseUrlBuilder
-
Sets the base
Url
(protocol, host, port, path) for the base URL (protocol, host, port, path) property. - withBaseUrl(Url) - Method in class org.refcodes.web.HttpClientContextBuilder
-
Sets the base
Url
(protocol, host, port, path) for the base URL (protocol, host, port, path) property. - withBasicAuthCredentials(String, String) - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder
-
Sets the
BasicAuthCredentials
from the user name and the secret for the Basic-Authentication credentials property. - withBasicAuthCredentials(String, String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the user name and secret (password) for HTTP Basic-Authentication.
- withBasicAuthCredentials(BasicAuthCredentials) - Method in interface org.refcodes.web.BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder
-
Sets the
BasicAuthCredentials
for the Basic-Authentication credentials property. - withBasicAuthCredentials(BasicAuthCredentials) - Method in interface org.refcodes.web.HeaderFields
-
Sets the
BasicAuthCredentials
(user name and secret) for HTTP Basic-Authentication. - withBasicAuthRequired(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the WWW-Authenticate field for Basic-Authentication with the given realm.
- withBearerAuthCredentials(String) - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder
-
Sets the
BearerAuthCredentials
from the token for the bearer auth credentials property. - withBearerAuthCredentials(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the token (secret) for HTTP bearer authentication.
- withBearerAuthCredentials(BearerAuthCredentials) - Method in interface org.refcodes.web.BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder
-
Sets the
BearerAuthCredentials
for the bearer auth credentials property. - withBearerAuthCredentials(BearerAuthCredentials) - Method in interface org.refcodes.web.HeaderFields
-
Sets the
BearerAuthCredentials
(token) for HTTP bearer authentication. - withCharsetParametrer(String) - Method in class org.refcodes.web.ContentType
-
Sets the charset parameter's charset-code.
- withCidrNotation(String) - Method in class org.refcodes.web.UrlBuilder
- withContentEncoding(ContentEncoding) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Encoding entity-Header-Field
HeaderField.CONTENT_ENCODING
: "... - withContentLength(Integer) - Method in interface org.refcodes.web.HeaderFields
-
Sets he Content-Length request-Header-Field
HeaderField.CONTENT_LENGTH
: "... - withContentType(ContentType) - Method in interface org.refcodes.web.ContentTypeAccessor.ContentTypeBuilder
-
Sets the Content-Type for the Content-Type property.
- withContentType(HttpMediaType) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Type entity-Header-Field
HeaderField.CONTENT_TYPE
. - withContentType(MediaType, Map<String, String>) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Content-Type's
MediaType
and the parameters for the HTTP body. - withDomain(String) - Method in class org.refcodes.web.ResponseCookie
-
Sets the domain for this cookie.
- withExpiresAfter(TimeUnit, long) - Method in class org.refcodes.web.ResponseCookie
-
Builder method for the method
ResponseCookie.setExpiresAfter(TimeUnit, long)
. - withExpiresDate(Date) - Method in class org.refcodes.web.ResponseCookie
-
Sets the expiration date of this cookie and returns this instance as of the Builder-Pattern.
- withFormFields(FormFields) - Method in interface org.refcodes.web.FormFieldsAccessor.FormFieldsBuilder
-
Sets the request Form-Fields to use and returns this builder as of the Builder-Pattern.
- withFragment(String) - Method in interface org.refcodes.web.FragmentAccessor.FragmentBuilder
-
Sets the fragment to use and returns this builder as of the builder pattern.
- withFragment(String) - Method in class org.refcodes.web.UrlBuilder
-
Sets the fragment to use and returns this builder as of the builder pattern.
- withHeaderField(HeaderField) - Method in interface org.refcodes.web.HeaderFieldAccessor.HeaderFieldBuilder
-
Sets the
HeaderField
for theHeaderField
property. - withHeaderFields(T) - Method in interface org.refcodes.web.HeaderFieldsAccessor.HeaderFieldsBuilder
-
Sets the Header-Fields to use and returns this builder as of the Builder-Pattern.
- withHost(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the Host request-Header-Field
HeaderField.HOST
: "... - withHost(String) - Method in interface org.refcodes.web.HostAccessor.HostBuilder
-
Sets the host to use and returns this builder as of the builder pattern.
- withHost(String) - Method in class org.refcodes.web.UrlBuilder
-
Sets the host to use and returns this builder as of the builder pattern.
- withHttpAuthorization(String) - Method in interface org.refcodes.web.AuthTypeCredentials
-
Initializes this
AuthTypeCredentials
instance from theHeaderField.AUTHORIZATION
Header-Fields's value. - withHttpAuthorization(String) - Method in class org.refcodes.web.BasicAuthCredentials
-
Initializes this
AuthTypeCredentials
instance from theHeaderField.AUTHORIZATION
Header-Fields's value. - withHttpAuthorization(String) - Method in class org.refcodes.web.BearerAuthCredentials
-
Initializes this
AuthTypeCredentials
instance from theHeaderField.AUTHORIZATION
Header-Fields's value. - withHttpBody(String) - Method in interface org.refcodes.web.HttpBodyAccessor.HttpBodyBuilder
-
Sets the HTTP body for the HTTP body property.
- withHttpCookie(String) - Method in interface org.refcodes.web.Cookie
-
Sets the cookie according to the provided HTTP cookie text via
Cookie.fromHttpCookie(String)
. - withHttpCookie(String) - Method in class org.refcodes.web.RequestCookie
-
Sets the cookie according to the provided HTTP cookie text via
Cookie.fromHttpCookie(String)
. - withHttpCookie(String) - Method in class org.refcodes.web.ResponseCookie
-
Sets the cookie according to the provided HTTP cookie text via
Cookie.fromHttpCookie(String)
. - withHttpInputStream(InputStream) - Method in interface org.refcodes.web.HttpInputStreamAccessor.HttpInputStreamBuilder
-
Sets the
InputStream
for the HTTPInputStream
property. - withHttpMethod(HttpMethod) - Method in interface org.refcodes.web.HttpMethodAccessor.HttpMethodBuilder
-
Sets the HTTP-Method for the HTTP-Method property.
- withHttpOnly(boolean) - Method in class org.refcodes.web.ResponseCookie
-
Sets whether it be an HTTP only cookie.
- withHttpStatusCode(HttpStatusCode) - Method in class org.refcodes.web.HttpServerResponse
-
Sets the HTTP Status-Code for the HTTP Status-Code property.
- withHttpStatusCode(HttpStatusCode) - Method in interface org.refcodes.web.HttpStatusCodeAccessor.HttpStatusCodeBuilder
-
Sets the HTTP Status-Code for the HTTP Status-Code property.
- withHttpSuccessCode(HttpSuccessCode) - Method in interface org.refcodes.web.HttpSuccessCodeAccessor.HttpSuccessCodeBuilder
-
Sets the HTTP success code for the HTTP success code property.
- withIdentity(String) - Method in class org.refcodes.web.BasicAuthCredentialsBuilder
- withIdentity(String) - Method in class org.refcodes.web.UrlBuilder
- withInsert(Object) - Method in class org.refcodes.web.ContentType
- withInsert(Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsert(PathMap<String>) - Method in class org.refcodes.web.ContentType
- withInsert(PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(Object[], Object, Object[]) - Method in class org.refcodes.web.ContentType
- withInsertBetween(Object[], Object, Object[]) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in class org.refcodes.web.ContentType
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(Object, Object, Object) - Method in class org.refcodes.web.ContentType
- withInsertBetween(Object, Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(Object, PathMap<String>, Object) - Method in class org.refcodes.web.ContentType
- withInsertBetween(Object, PathMap<String>, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(String[], Object, String[]) - Method in class org.refcodes.web.ContentType
- withInsertBetween(String[], Object, String[]) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(String[], PathMap<String>, String[]) - Method in class org.refcodes.web.ContentType
- withInsertBetween(String[], PathMap<String>, String[]) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(String, Object, String) - Method in class org.refcodes.web.ContentType
- withInsertBetween(String, Object, String) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(String, PathMap<String>, String) - Method in class org.refcodes.web.ContentType
- withInsertBetween(String, PathMap<String>, String) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in class org.refcodes.web.ContentType
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in class org.refcodes.web.ContentType
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(Object, Object) - Method in class org.refcodes.web.ContentType
- withInsertFrom(Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(Object, Object...) - Method in class org.refcodes.web.ContentType
- withInsertFrom(Object, Object...) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(Object, String) - Method in class org.refcodes.web.ContentType
- withInsertFrom(Object, String) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(Object, String...) - Method in class org.refcodes.web.ContentType
- withInsertFrom(Object, String...) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(Object, Collection<?>) - Method in class org.refcodes.web.ContentType
- withInsertFrom(Object, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(PathMap<String>, Object) - Method in class org.refcodes.web.ContentType
- withInsertFrom(PathMap<String>, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(PathMap<String>, Object...) - Method in class org.refcodes.web.ContentType
- withInsertFrom(PathMap<String>, Object...) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(PathMap<String>, String) - Method in class org.refcodes.web.ContentType
- withInsertFrom(PathMap<String>, String) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(PathMap<String>, String...) - Method in class org.refcodes.web.ContentType
- withInsertFrom(PathMap<String>, String...) - Method in class org.refcodes.web.HttpBodyMap
- withInsertFrom(PathMap<String>, Collection<?>) - Method in class org.refcodes.web.ContentType
- withInsertFrom(PathMap<String>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(Object[], Object) - Method in class org.refcodes.web.ContentType
- withInsertTo(Object[], Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(Object[], PathMap<String>) - Method in class org.refcodes.web.ContentType
- withInsertTo(Object[], PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(Object, Object) - Method in class org.refcodes.web.ContentType
- withInsertTo(Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(Object, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withInsertTo(Object, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(String[], Object) - Method in class org.refcodes.web.ContentType
- withInsertTo(String[], Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(String[], PathMap<String>) - Method in class org.refcodes.web.ContentType
- withInsertTo(String[], PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(String, Object) - Method in class org.refcodes.web.ContentType
- withInsertTo(String, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(String, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withInsertTo(String, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(Collection<?>, Object) - Method in class org.refcodes.web.ContentType
- withInsertTo(Collection<?>, Object) - Method in class org.refcodes.web.HttpBodyMap
- withInsertTo(Collection<?>, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withInsertTo(Collection<?>, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withIpAddress(int[]) - Method in class org.refcodes.web.UrlBuilder
- withKeyStoreDescriptor(KeyStoreDescriptor) - Method in class org.refcodes.web.HttpServerContextBuilder
- withLoadBalancingStrategy(LoadBalancingStrategy) - Method in interface org.refcodes.web.LoadBalancingStrategyAccessor.LoadBalancingStrategyBuilder
-
Sets the load balancing strategy for the load balancing strategy property.
- withLocalAddress(InetSocketAddress) - Method in interface org.refcodes.web.LocalAddressAccessor.LocalAddressBuilder
-
Sets the local address for the local address property.
- withLocation(String) - Method in class org.refcodes.web.ResponseHeaderFields
-
Sets the Location Response-Header-Field
HeaderField.LOCATION
: "... - withMaxAge(int) - Method in class org.refcodes.web.ResponseCookie
-
Builder method for
ResponseCookie.setMaxAge(int)
. - withMaxConnections(int) - Method in class org.refcodes.web.HttpServerContextBuilder
- withMediaType(String) - Method in interface org.refcodes.web.HttpMediaTypeAccessor.HttpMediaTypeBuilder
-
Sets the HTTP Media-Type for the HTTP Media-Type property.
- withMediaType(MediaType) - Method in interface org.refcodes.web.MediaTypeAccessor.MediaTypeBuilder
-
Sets the Media-Type for the Media-Type property.
- withMediaTypes(MediaType[]) - Method in interface org.refcodes.web.MediaTypesAccessor.MediaTypesBuilder
-
Sets the Media-Types for the Media-Types property.
- withMerge(Object) - Method in class org.refcodes.web.ContentType
- withMerge(Object) - Method in class org.refcodes.web.HttpBodyMap
- withMerge(PathMap<String>) - Method in class org.refcodes.web.ContentType
- withMerge(PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(Object[], Object, Object[]) - Method in class org.refcodes.web.ContentType
- withMergeBetween(Object[], Object, Object[]) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in class org.refcodes.web.ContentType
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(Object, Object, Object) - Method in class org.refcodes.web.ContentType
- withMergeBetween(Object, Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(Object, PathMap<String>, Object) - Method in class org.refcodes.web.ContentType
- withMergeBetween(Object, PathMap<String>, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(String[], Object, String[]) - Method in class org.refcodes.web.ContentType
- withMergeBetween(String[], Object, String[]) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(String[], PathMap<String>, String[]) - Method in class org.refcodes.web.ContentType
- withMergeBetween(String[], PathMap<String>, String[]) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(String, Object, String) - Method in class org.refcodes.web.ContentType
- withMergeBetween(String, Object, String) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(String, PathMap<String>, String) - Method in class org.refcodes.web.ContentType
- withMergeBetween(String, PathMap<String>, String) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in class org.refcodes.web.ContentType
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in class org.refcodes.web.ContentType
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(Object, Object) - Method in class org.refcodes.web.ContentType
- withMergeFrom(Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(Object, Object...) - Method in class org.refcodes.web.ContentType
- withMergeFrom(Object, Object...) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(Object, String) - Method in class org.refcodes.web.ContentType
- withMergeFrom(Object, String) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(Object, String...) - Method in class org.refcodes.web.ContentType
- withMergeFrom(Object, String...) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(Object, Collection<?>) - Method in class org.refcodes.web.ContentType
- withMergeFrom(Object, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(PathMap<String>, Object) - Method in class org.refcodes.web.ContentType
- withMergeFrom(PathMap<String>, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(PathMap<String>, Object...) - Method in class org.refcodes.web.ContentType
- withMergeFrom(PathMap<String>, Object...) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(PathMap<String>, String) - Method in class org.refcodes.web.ContentType
- withMergeFrom(PathMap<String>, String) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(PathMap<String>, String...) - Method in class org.refcodes.web.ContentType
- withMergeFrom(PathMap<String>, String...) - Method in class org.refcodes.web.HttpBodyMap
- withMergeFrom(PathMap<String>, Collection<?>) - Method in class org.refcodes.web.ContentType
- withMergeFrom(PathMap<String>, Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(Object[], Object) - Method in class org.refcodes.web.ContentType
- withMergeTo(Object[], Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(Object[], PathMap<String>) - Method in class org.refcodes.web.ContentType
- withMergeTo(Object[], PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(Object, Object) - Method in class org.refcodes.web.ContentType
- withMergeTo(Object, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(Object, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withMergeTo(Object, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(String[], Object) - Method in class org.refcodes.web.ContentType
- withMergeTo(String[], Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(String[], PathMap<String>) - Method in class org.refcodes.web.ContentType
- withMergeTo(String[], PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(String, Object) - Method in class org.refcodes.web.ContentType
- withMergeTo(String, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(String, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withMergeTo(String, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(Collection<?>, Object) - Method in class org.refcodes.web.ContentType
- withMergeTo(Collection<?>, Object) - Method in class org.refcodes.web.HttpBodyMap
- withMergeTo(Collection<?>, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withMergeTo(Collection<?>, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withOAuthToken(OauthToken) - Method in interface org.refcodes.web.OauthTokenAccessor.OauthTokenBuilder
-
Sets the OAuth token for the OAuth token property
- withPath(String) - Method in class org.refcodes.web.ResponseCookie
-
Sets the path of the cookie.
- withPath(String) - Method in class org.refcodes.web.UrlBuilder
- withPort(int) - Method in class org.refcodes.web.HttpServerContextBuilder
- withPort(int) - Method in class org.refcodes.web.UrlBuilder
- withProtocol(String) - Method in class org.refcodes.web.HttpServerContextBuilder
-
Sets the protocol for the URL scheme.
- withProtocol(String) - Method in interface org.refcodes.web.SchemeAccessor.SchemeBuilder
-
Sets the protocol for the URL scheme.
- withProtocol(String) - Method in class org.refcodes.web.UrlBuilder
-
Sets the protocol for the URL scheme.
- withPut(Enum<?>, String) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.withPut(String, String)
though using the provided enumeration'sEnum.toString()
method to determine the key. - withPut(Enum<?>, String...) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.withPut(String, String...)
though using the provided enumeration'sEnum.toString()
method to determine the key. - withPut(Enum<?>, List<String>) - Method in interface org.refcodes.web.HttpFields
-
Same as
HttpFields.withPut(String, List)
though using the provided enumeration'sEnum.toString()
method to determine the key. - withPut(Object[], String) - Method in class org.refcodes.web.ContentType
- withPut(Object[], String) - Method in class org.refcodes.web.HttpBodyMap
- withPut(String[], String) - Method in class org.refcodes.web.ContentType
- withPut(String[], String) - Method in class org.refcodes.web.HttpBodyMap
- withPut(String, String) - Method in class org.refcodes.web.ContentType
- withPut(String, String) - Method in class org.refcodes.web.HttpBodyMap
- withPut(String, String) - Method in interface org.refcodes.web.HttpFields
-
Builder method for the
HttpFields.put(String, String)
method. - withPut(String, String...) - Method in interface org.refcodes.web.HttpFields
-
Builder method for the
HttpFields.put(String, String...)
method. - withPut(String, List<String>) - Method in interface org.refcodes.web.HttpFields
-
Builder method for the
Map.put(Object, Object)
method. - withPut(Collection<?>, String) - Method in class org.refcodes.web.ContentType
- withPut(Collection<?>, String) - Method in class org.refcodes.web.HttpBodyMap
- withPut(Property) - Method in class org.refcodes.web.ContentType
- withPut(Property) - Method in class org.refcodes.web.HttpBodyMap
- withPut(Relation<String, String>) - Method in class org.refcodes.web.ContentType
- withPut(Relation<String, String>) - Method in class org.refcodes.web.HttpBodyMap
- withPut(HeaderField, String) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for
HeaderFields.put(HeaderField, String)
. - withPut(HeaderField, String...) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for
HeaderFields.put(HeaderField, String...)
. - withPut(HeaderField, List<String>) - Method in interface org.refcodes.web.HeaderFields
-
Builder method for
HeaderFields.put(HeaderField, List)
. - withPut(MediaTypeParameter, String) - Method in class org.refcodes.web.ContentType
-
With put.
- withPutBoolean(Object[], Boolean) - Method in class org.refcodes.web.ContentType
- withPutBoolean(Object[], Boolean) - Method in class org.refcodes.web.HttpBodyMap
- withPutBoolean(Object, Boolean) - Method in class org.refcodes.web.ContentType
- withPutBoolean(Object, Boolean) - Method in class org.refcodes.web.HttpBodyMap
- withPutBoolean(String[], Boolean) - Method in class org.refcodes.web.ContentType
- withPutBoolean(String[], Boolean) - Method in class org.refcodes.web.HttpBodyMap
- withPutBoolean(String, Boolean) - Method in class org.refcodes.web.ContentType
- withPutBoolean(String, Boolean) - Method in class org.refcodes.web.HttpBodyMap
- withPutBoolean(Collection<?>, Boolean) - Method in class org.refcodes.web.ContentType
- withPutBoolean(Collection<?>, Boolean) - Method in class org.refcodes.web.HttpBodyMap
- withPutByte(Object[], Byte) - Method in class org.refcodes.web.ContentType
- withPutByte(Object[], Byte) - Method in class org.refcodes.web.HttpBodyMap
- withPutByte(Object, Byte) - Method in class org.refcodes.web.ContentType
- withPutByte(Object, Byte) - Method in class org.refcodes.web.HttpBodyMap
- withPutByte(String[], Byte) - Method in class org.refcodes.web.ContentType
- withPutByte(String[], Byte) - Method in class org.refcodes.web.HttpBodyMap
- withPutByte(String, Byte) - Method in class org.refcodes.web.ContentType
- withPutByte(String, Byte) - Method in class org.refcodes.web.HttpBodyMap
- withPutByte(Collection<?>, Byte) - Method in class org.refcodes.web.ContentType
- withPutByte(Collection<?>, Byte) - Method in class org.refcodes.web.HttpBodyMap
- withPutChar(Object[], Character) - Method in class org.refcodes.web.ContentType
- withPutChar(Object[], Character) - Method in class org.refcodes.web.HttpBodyMap
- withPutChar(Object, Character) - Method in class org.refcodes.web.ContentType
- withPutChar(Object, Character) - Method in class org.refcodes.web.HttpBodyMap
- withPutChar(String[], Character) - Method in class org.refcodes.web.ContentType
- withPutChar(String[], Character) - Method in class org.refcodes.web.HttpBodyMap
- withPutChar(String, Character) - Method in class org.refcodes.web.ContentType
- withPutChar(String, Character) - Method in class org.refcodes.web.HttpBodyMap
- withPutChar(Collection<?>, Character) - Method in class org.refcodes.web.ContentType
- withPutChar(Collection<?>, Character) - Method in class org.refcodes.web.HttpBodyMap
- withPutClass(Object[], Class<C>) - Method in class org.refcodes.web.ContentType
- withPutClass(Object[], Class<C>) - Method in class org.refcodes.web.HttpBodyMap
- withPutClass(Object, Class<C>) - Method in class org.refcodes.web.ContentType
- withPutClass(Object, Class<C>) - Method in class org.refcodes.web.HttpBodyMap
- withPutClass(String[], Class<C>) - Method in class org.refcodes.web.ContentType
- withPutClass(String[], Class<C>) - Method in class org.refcodes.web.HttpBodyMap
- withPutClass(String, Class<C>) - Method in class org.refcodes.web.ContentType
- withPutClass(String, Class<C>) - Method in class org.refcodes.web.HttpBodyMap
- withPutClass(Collection<?>, Class<C>) - Method in class org.refcodes.web.ContentType
- withPutClass(Collection<?>, Class<C>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(int, Object) - Method in class org.refcodes.web.ContentType
- withPutDirAt(int, Object) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(int, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withPutDirAt(int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(Object[], int, Object) - Method in class org.refcodes.web.ContentType
- withPutDirAt(Object[], int, Object) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(Object[], int, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withPutDirAt(Object[], int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(Object, int, Object) - Method in class org.refcodes.web.ContentType
- withPutDirAt(Object, int, Object) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(Object, int, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withPutDirAt(Object, int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(String[], int, Object) - Method in class org.refcodes.web.ContentType
- withPutDirAt(String[], int, Object) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(String[], int, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withPutDirAt(String[], int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(String, int, Object) - Method in class org.refcodes.web.ContentType
- withPutDirAt(String, int, Object) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(String, int, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withPutDirAt(String, int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(Collection<?>, int, Object) - Method in class org.refcodes.web.ContentType
- withPutDirAt(Collection<?>, int, Object) - Method in class org.refcodes.web.HttpBodyMap
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in class org.refcodes.web.ContentType
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in class org.refcodes.web.HttpBodyMap
- withPutDouble(Object[], Double) - Method in class org.refcodes.web.ContentType
- withPutDouble(Object[], Double) - Method in class org.refcodes.web.HttpBodyMap
- withPutDouble(Object, Double) - Method in class org.refcodes.web.ContentType
- withPutDouble(Object, Double) - Method in class org.refcodes.web.HttpBodyMap
- withPutDouble(String[], Double) - Method in class org.refcodes.web.ContentType
- withPutDouble(String[], Double) - Method in class org.refcodes.web.HttpBodyMap
- withPutDouble(String, Double) - Method in class org.refcodes.web.ContentType
- withPutDouble(String, Double) - Method in class org.refcodes.web.HttpBodyMap
- withPutDouble(Collection<?>, Double) - Method in class org.refcodes.web.ContentType
- withPutDouble(Collection<?>, Double) - Method in class org.refcodes.web.HttpBodyMap
- withPutEnum(Object[], E) - Method in class org.refcodes.web.ContentType
- withPutEnum(Object[], E) - Method in class org.refcodes.web.HttpBodyMap
- withPutEnum(Object, E) - Method in class org.refcodes.web.ContentType
- withPutEnum(Object, E) - Method in class org.refcodes.web.HttpBodyMap
- withPutEnum(String[], E) - Method in class org.refcodes.web.ContentType
- withPutEnum(String[], E) - Method in class org.refcodes.web.HttpBodyMap
- withPutEnum(String, E) - Method in class org.refcodes.web.ContentType
- withPutEnum(String, E) - Method in class org.refcodes.web.HttpBodyMap
- withPutEnum(Collection<?>, E) - Method in class org.refcodes.web.ContentType
- withPutEnum(Collection<?>, E) - Method in class org.refcodes.web.HttpBodyMap
- withPutFloat(Object[], Float) - Method in class org.refcodes.web.ContentType
- withPutFloat(Object[], Float) - Method in class org.refcodes.web.HttpBodyMap
- withPutFloat(Object, Float) - Method in class org.refcodes.web.ContentType
- withPutFloat(Object, Float) - Method in class org.refcodes.web.HttpBodyMap
- withPutFloat(String[], Float) - Method in class org.refcodes.web.ContentType
- withPutFloat(String[], Float) - Method in class org.refcodes.web.HttpBodyMap
- withPutFloat(String, Float) - Method in class org.refcodes.web.ContentType
- withPutFloat(String, Float) - Method in class org.refcodes.web.HttpBodyMap
- withPutFloat(Collection<?>, Float) - Method in class org.refcodes.web.ContentType
- withPutFloat(Collection<?>, Float) - Method in class org.refcodes.web.HttpBodyMap
- withPutInt(Object[], Integer) - Method in class org.refcodes.web.ContentType
- withPutInt(Object[], Integer) - Method in class org.refcodes.web.HttpBodyMap
- withPutInt(Object, Integer) - Method in class org.refcodes.web.ContentType
- withPutInt(Object, Integer) - Method in class org.refcodes.web.HttpBodyMap
- withPutInt(String[], Integer) - Method in class org.refcodes.web.ContentType
- withPutInt(String[], Integer) - Method in class org.refcodes.web.HttpBodyMap
- withPutInt(String, Integer) - Method in class org.refcodes.web.ContentType
- withPutInt(String, Integer) - Method in class org.refcodes.web.HttpBodyMap
- withPutInt(Collection<?>, Integer) - Method in class org.refcodes.web.ContentType
- withPutInt(Collection<?>, Integer) - Method in class org.refcodes.web.HttpBodyMap
- withPutLong(Object[], Long) - Method in class org.refcodes.web.ContentType
- withPutLong(Object[], Long) - Method in class org.refcodes.web.HttpBodyMap
- withPutLong(Object, Long) - Method in class org.refcodes.web.ContentType
- withPutLong(Object, Long) - Method in class org.refcodes.web.HttpBodyMap
- withPutLong(String[], Long) - Method in class org.refcodes.web.ContentType
- withPutLong(String[], Long) - Method in class org.refcodes.web.HttpBodyMap
- withPutLong(String, Long) - Method in class org.refcodes.web.ContentType
- withPutLong(String, Long) - Method in class org.refcodes.web.HttpBodyMap
- withPutLong(Collection<?>, Long) - Method in class org.refcodes.web.ContentType
- withPutLong(Collection<?>, Long) - Method in class org.refcodes.web.HttpBodyMap
- withPutShort(Object[], Short) - Method in class org.refcodes.web.ContentType
- withPutShort(Object[], Short) - Method in class org.refcodes.web.HttpBodyMap
- withPutShort(Object, Short) - Method in class org.refcodes.web.ContentType
- withPutShort(Object, Short) - Method in class org.refcodes.web.HttpBodyMap
- withPutShort(String[], Short) - Method in class org.refcodes.web.ContentType
- withPutShort(String[], Short) - Method in class org.refcodes.web.HttpBodyMap
- withPutShort(String, Short) - Method in class org.refcodes.web.ContentType
- withPutShort(String, Short) - Method in class org.refcodes.web.HttpBodyMap
- withPutShort(Collection<?>, Short) - Method in class org.refcodes.web.ContentType
- withPutShort(Collection<?>, Short) - Method in class org.refcodes.web.HttpBodyMap
- withPutStatusAlias(String) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/alias") status alias.
- withPutStatusAlias(HttpStatusCode) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/alias") status alias.
- withPutStatusCode(int) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/code") status code.
- withPutStatusCode(HttpStatusCode) - Method in class org.refcodes.web.HttpBodyMap
-
Puts a public path's ("status/code") status code.
- withPutString(Object[], String) - Method in class org.refcodes.web.ContentType
- withPutString(Object[], String) - Method in class org.refcodes.web.HttpBodyMap
- withPutString(Object, String) - Method in class org.refcodes.web.ContentType
- withPutString(Object, String) - Method in class org.refcodes.web.HttpBodyMap
- withPutString(String[], String) - Method in class org.refcodes.web.ContentType
- withPutString(String[], String) - Method in class org.refcodes.web.HttpBodyMap
- withPutString(String, String) - Method in class org.refcodes.web.ContentType
- withPutString(String, String) - Method in class org.refcodes.web.HttpBodyMap
- withPutString(Collection<?>, String) - Method in class org.refcodes.web.ContentType
- withPutString(Collection<?>, String) - Method in class org.refcodes.web.HttpBodyMap
- withQueryFields(FormFields) - Method in interface org.refcodes.web.QueryFieldsAccessor.QueryFieldsBuilder
-
Sets the request Query-Fields to use and returns this builder as of the Builder-Pattern.
- withQueryFields(FormFields) - Method in class org.refcodes.web.UrlBuilder
-
Sets the request Query-Fields to use and returns this builder as of the Builder-Pattern.
- withRealm(String) - Method in interface org.refcodes.web.RealmAccessor.RealmBuilder
-
Sets the realm for the realm property.
- withRedirectDepth(int) - Method in interface org.refcodes.web.RedirectDepthAccessor.RedirectDepthBuilder
-
Sets the redirect depth for the redirect depth property.
- withRemoteAddress(InetSocketAddress) - Method in interface org.refcodes.web.RemoteAddressAccessor.RemoteAddressBuilder
-
Sets the remote address for the remote address property.
- withRemoveFrom(Object) - Method in class org.refcodes.web.ContentType
- withRemoveFrom(Object) - Method in class org.refcodes.web.HttpBodyMap
- withRemoveFrom(Object...) - Method in class org.refcodes.web.ContentType
- withRemoveFrom(Object...) - Method in class org.refcodes.web.HttpBodyMap
- withRemoveFrom(String) - Method in class org.refcodes.web.ContentType
- withRemoveFrom(String) - Method in class org.refcodes.web.HttpBodyMap
- withRemoveFrom(String...) - Method in class org.refcodes.web.ContentType
- withRemoveFrom(String...) - Method in class org.refcodes.web.HttpBodyMap
- withRemoveFrom(Collection<?>) - Method in class org.refcodes.web.ContentType
- withRemoveFrom(Collection<?>) - Method in class org.refcodes.web.HttpBodyMap
- withRemovePaths(String...) - Method in class org.refcodes.web.ContentType
- withRemovePaths(String...) - Method in class org.refcodes.web.HttpBodyMap
- withRequestHeaderFields(RequestHeaderFields) - Method in interface org.refcodes.web.RequestHeaderFieldsAccessor.RequestHeaderFieldsBuilder
-
Sets the request Header-Fields to use and returns this builder as of the Builder-Pattern.
- withRequestId(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the (interprocess) Request-Correlation TID field
HeaderField.REQUEST_ID
: A Request-Correlation TID is an TID to uniquely identify an entity (request) across multiple systems. - withResponse(RES) - Method in class org.refcodes.web.HttpServerResponse
-
Sets the response for the response property.
- withResponseHeaderFields(ResponseHeaderFields) - Method in interface org.refcodes.web.ResponseHeaderFieldsAccessor.ResponseHeaderFieldsBuilder
-
Sets the response Header-Fields to use and returns this builder as of the Builder-Pattern.
- withScheme(Scheme) - Method in class org.refcodes.web.HttpServerContextBuilder
-
Sets the UrlScheme for the URL scheme.
- withScheme(Scheme) - Method in interface org.refcodes.web.SchemeAccessor.SchemeBuilder
-
Sets the UrlScheme for the URL scheme.
- withScheme(Scheme) - Method in class org.refcodes.web.UrlBuilder
-
Sets the UrlScheme for the URL scheme.
- withSecret(String) - Method in class org.refcodes.web.BasicAuthCredentialsBuilder
- withSecret(String) - Method in class org.refcodes.web.UrlBuilder
- withSecure(boolean) - Method in class org.refcodes.web.ResponseCookie
-
Sets whether it be a secure HTTP cookie.
- withSessionId(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets the (interprocess) Session-Correlation TID field
HeaderField.SESSION_ID
: A Session-Correlation TID is an TID to uniquely identify an entity (session) across multiple systems. - withTopLevelType(TopLevelType) - Method in interface org.refcodes.web.TopLevelTypeAccessor.TopLevelTypeBuilder
-
Sets the Media-Top-Level-Type for the Media-Top-Level-Type property.
- withTrustStoreDescriptor(TrustStoreDescriptor) - Method in class org.refcodes.web.HttpClientContextBuilder
- withUrl(Url) - Method in interface org.refcodes.web.UrlAccessor.UrlBuilder
-
Sets the Url for the
Url
property. - withUserAgent(String) - Method in interface org.refcodes.web.HeaderFields
-
Sets he User-Agent request-Header-Field
HeaderField.USER_AGENT
: "... - withUserAgent(String) - Method in interface org.refcodes.web.UserAgentAccessor.UserAgentBuilder
-
Sets the user agent for the user agent property.
- withVersion(String) - Method in class org.refcodes.web.ResponseCookie
-
Builder method for
ResponseCookie.setVersion(String)
. - withVirtualHost(String) - Method in interface org.refcodes.web.VirtualHostAccessor.VirtualHostBuilder
-
Sets the virtual host to use and returns this builder as of the builder pattern.
- WWW_AUTHENTICATE - Enum constant in enum class org.refcodes.web.HeaderField
X
- X_B3_PARENT_SPAN_ID - Enum constant in enum class org.refcodes.web.HeaderField
-
B3 ids are fixed-length lowerhex encoded values.
- X_B3_TRACE_ID - Enum constant in enum class org.refcodes.web.HeaderField
-
B3 ids are fixed-length lowerhex encoded values.
- X_B3_TRACE_SPAN_ID - Enum constant in enum class org.refcodes.web.HeaderField
-
B3 ids are fixed-length lowerhex encoded values.
- X_REQUEST_ID - Enum constant in enum class org.refcodes.web.HeaderField
-
"...
- XmlMediaTypeFactory - Class in org.refcodes.web
-
Implements the
MediaTypeFactory
for Media-Type "application/xml" (MediaType.APPLICATION_XML
). - XmlMediaTypeFactory() - Constructor for class org.refcodes.web.XmlMediaTypeFactory
Y
- YamlMediaTypeFactory - Class in org.refcodes.web
-
Implements the
MediaTypeFactory
for Media-Type "application/YAML" (MediaType.APPLICATION_YAML
). - YamlMediaTypeFactory() - Constructor for class org.refcodes.web.YamlMediaTypeFactory
-
Constructs the
YamlMediaTypeFactory
.
_
- _accessToken - Variable in class org.refcodes.web.OauthToken
- _customGrant - Variable in class org.refcodes.web.OauthToken
- _expiresIn - Variable in class org.refcodes.web.OauthToken
- _fragment - Variable in class org.refcodes.web.Url
- _grantType - Variable in class org.refcodes.web.OauthToken
- _headerFields - Variable in class org.refcodes.web.AbstractHttpRequest
- _host - Variable in class org.refcodes.web.Url
- _httpMethod - Variable in class org.refcodes.web.AbstractHttpRequest
- _httpStatusCode - Variable in class org.refcodes.web.AbstractHttpResponse
- _httpStatusCode - Variable in exception org.refcodes.web.HttpStatusException
- _httpStatusCode - Variable in exception org.refcodes.web.HttpStatusRuntimeException
- _identity - Variable in class org.refcodes.web.BasicCredentials
- _identity - Variable in class org.refcodes.web.Url
- _ipAddress - Variable in class org.refcodes.web.Url
- _isDisposed - Variable in class org.refcodes.web.OauthToken
- _mediaTypeFactoryLookup - Variable in class org.refcodes.web.HttpClientRequest
- _mediaTypeFactoryLookup - Variable in class org.refcodes.web.HttpClientResponse
- _mediaTypeFactoryLookup - Variable in class org.refcodes.web.HttpServerRequest
- _mediaTypeFactoryLookup - Variable in class org.refcodes.web.HttpServerResponse
- _notBeforePolicy - Variable in class org.refcodes.web.OauthToken
- _path - Variable in class org.refcodes.web.Url
- _port - Variable in class org.refcodes.web.Url
- _protocol - Variable in class org.refcodes.web.Url
- _queryFields - Variable in class org.refcodes.web.Url
- _refreshExpiresIn - Variable in class org.refcodes.web.OauthToken
- _refreshToken - Variable in class org.refcodes.web.OauthToken
- _scheme - Variable in class org.refcodes.web.Url
- _scope - Variable in class org.refcodes.web.OauthToken
- _secret - Variable in class org.refcodes.web.BasicCredentials
- _secret - Variable in class org.refcodes.web.Url
- _sessionState - Variable in class org.refcodes.web.OauthToken
- _tokenType - Variable in class org.refcodes.web.OauthToken
- _url - Variable in class org.refcodes.web.AbstractHttpRequest
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form