Uses of Package
com.soklet
Packages that use com.soklet
Package
Description
Core Soklet contracts and functionality.
Exceptions thrown during HTTP request processing.
-
Classes in com.soklet used by com.sokletClassDescriptionEncapsulates non-preflight CORS HTTP request data.Contract for types that authorize CORS requests.Encapsulates CORS preflight-related HTTP request data.Response headers to send over the wire for CORS preflight requests.Builder used to construct instances of
CorsPreflightResponseviaCorsPreflightResponse.withAccessControlAllowOrigin(String).Builder used to copy instances ofCorsPreflightResponseviaCorsPreflightResponse.copy().Response headers to send over the wire for non-preflight CORS requests.Builder used to construct instances ofCorsResponseviaCorsResponse.withAccessControlAllowOrigin(String).Builder used to copy instances ofCorsResponseviaCorsResponse.copy().Represents the result of aServerSentEventSource"handshake".Type which indicates a successful Server-Sent Event handshake.Builder used to construct instances ofHandshakeResult.Accepted.Type which indicates a rejected Server-Sent Event handshake.Typesafe representation of HTTP request methods.Contract for concrete instance generation given type information."Hook" methods for customizing behavior in response to system lifecycle events - server started, request received, response written, and so on.An informational "loggable" event that occurs during Soklet's internal processing - for example, if an error occurs while handling a request.Builder used to construct instances ofLogEventviaLogEvent.with(LogEventType, String).Builder used to copy instances ofLogEventviaLogEvent.copy().Kinds ofLogEventinstances that Soklet can produce.A finalized representation of aResponse, suitable for sending to clients over the wire.Builder used to construct instances ofMarshaledResponseviaMarshaledResponse.withResponse(Response)orMarshaledResponse.withStatusCode(Integer).Builder used to copy instances ofMarshaledResponseviaMarshaledResponse.copy().Encapsulates an HTML form element name, binary andStringrepresentations of its value, and other attributes as encoded according to themultipart/form-dataspecification.Builder used to construct instances ofMultipartFieldviaMultipartField.withName(String)orMultipartField.with(String, byte[]).Builder used to copy instances ofMultipartFieldviaMultipartField.copy().Contract for parsing HTML form fields encoded according to themultipart/form-dataspecification.Strategies for encoding/decoding query strings:Content-Type: application/x-www-form-urlencoded(supports"+"for spaces) or "strict" RFC 3986 (percent-decoding only).Typesafe representation of HTTP Redirect types (301, 302, 303, 307, 308).Encapsulates information specified in an HTTP request.Builder used to copy instances ofRequestviaRequest.copy().Builder used to construct instances ofRequestviaRequest.withPath(HttpMethod, String).Builder used to construct instances ofRequestviaRequest.withRawUrl(HttpMethod, String).Contract for converting request body bytes into a corresponding Java type.Encapsulates the results of a request that would normally be handled by yourServer(both logical response and bytes to be sent over the wire), used for integration testing viaSimulator.performRequest(Request).Builder used to construct instances ofRequestResultviaRequestResult.withMarshaledResponse(MarshaledResponse).Builder used to copy instances ofRequestResultviaRequestResult.copy().Represents a Resource Method, which is a JavaMethodinvoked by Soklet to handle an HTTP request.Contract for determining parameter values to inject when invoking Resource Methods.Contract for matching incoming HTTP requests with appropriate Resource Methods (Java methods to invoke to handle requests).An HTTP URL path used to resolve a Resource Method at runtime, such as/users/123.A compile-time HTTP URL path declaration associated with an annotated Resource Method, such as/users/{userId}.Represents a/-delimited part of aResourcePathDeclaration.How to interpret aResourcePathDeclaration.Componentof aResourcePathDeclaration- is it literal text or a placeholder?Represents a logical HTTP response returned by a Resource Method.Builder used to construct instances ofResponseviaResponse.withStatusCode(Integer)orResponse.withRedirect(RedirectType, String).Builder used to copy instances ofResponseviaResponse.copy().HTTP "response" Cookie representation which supportsSet-Cookieheader encoding.Builder used to construct instances ofResponseCookieviaResponseCookie.withName(String)orResponseCookie.with(String, String).Builder used to copy instances ofResponseCookieviaResponseCookie.copy().Values which control whether a response cookie is sent with cross-site requests, providing some protection against cross-site request forgery attacks (CSRF).Prepares responses for each request scenario Soklet supports (Resource Method, exception, CORS preflight, etc.)Builder used to construct a standard implementation ofResponseMarshaler.Function used to support pluggable implementations ofResponseMarshaler.forContentTooLarge(Request, ResourceMethod).Function used to support pluggable implementations ofResponseMarshaler.forCorsAllowed(Request, Cors, CorsResponse, MarshaledResponse).Function used to support pluggable implementations ofResponseMarshaler.forCorsPreflightAllowed(Request, CorsPreflight, CorsPreflightResponse).Function used to support pluggable implementations ofResponseMarshaler.forCorsPreflightRejected(Request, CorsPreflight).Function used to support pluggable implementations ofResponseMarshaler.forHead(Request, MarshaledResponse).Function used to support pluggable implementations ofResponseMarshaler.forMethodNotAllowed(Request, Set).Function used to support pluggable implementations ofResponseMarshaler.forNotFound(Request).Function used to support pluggable implementations ofResponseMarshaler.forOptions(Request, Set).Function used to support pluggable implementations ofResponseMarshaler.forOptionsSplat(Request).Function used to support a pluggable "post-process" hook for any final customization or processing before data goes over the wire.Function used to support pluggable implementations ofResponseMarshaler.forResourceMethod(Request, Response, ResourceMethod).Function used to support pluggable implementations ofResponseMarshaler.forThrowable(Request, Throwable, ResourceMethod).Contract for HTTP server implementations that are designed to be managed by aSokletinstance.Builder used to construct a standard implementation ofServer.Request/response processing contract forServerimplementations.Encapsulates a Server-Sent Event payload that can be sent across the wire to a client.Builder used to construct instances ofServerSentEventviaServerSentEvent.withEvent(String),ServerSentEvent.withData(String), orServerSentEvent.withDefaults().Broadcasts a Server-Sent Event payload to all clients listening on aResourcePath.Sealed interface used bySimulator.performServerSentEventRequest(Request)during integration tests, which encapsulates the 3 logical outcomes for SSE connections: accepted handshake, rejected handshake, and general request failure.A special HTTP server whose only purpose is to provide Server-Sent Event functionality.Builder used to construct a standard implementation ofServerSentEventServer.Request/response processing contract forServerSentEventServerimplementations.Unicasts a Server-Sent Event or comment payload to a specific client listening on aResourcePath.Types of servers supported by Soklet - currentlyServerType.STANDARD_HTTPandServerType.SERVER_SENT_EVENT.Events that might trigger aSokletinstance to shut down.Simulates server behavior of accepting a request and returning a response without touching the network, useful for writing integration tests.Soklet's main class - manages aServer(and optionally aServerSentEventServer) using the provided system configuration.Defines how a Soklet system is configured.Builder used to construct instances ofSokletConfig.Builder used to copy instances ofSokletConfig.Formal enumeration of valid HTTP status codes. -
Classes in com.soklet used by com.soklet.exceptionClassDescriptionEncapsulates an HTML form element name, binary and
Stringrepresentations of its value, and other attributes as encoded according to themultipart/form-dataspecification.