Uses of Interface
io.helidon.cors.CorsResponseAdapter

Packages that use CorsResponseAdapter
Package
Description
Common cross origin configuration and types used by all Helidon flavors.
  • Uses of CorsResponseAdapter in io.helidon.cors

    Methods in io.helidon.cors that return CorsResponseAdapter
    Modifier and Type
    Method
    Description
    CorsResponseAdapter.header(HeaderName key, Object value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Arranges to add the specified header and value to the eventual response.
    CorsResponseAdapter.header(HeaderName key, String value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Arranges to add the specified header and value to the eventual response.
    Methods in io.helidon.cors with parameters of type CorsResponseAdapter
    Modifier and Type
    Method
    Description
    protected void
    CorsSupportBase.prepareResponse(CorsRequestAdapter<Q> requestAdapter, CorsResponseAdapter<R> responseAdapter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Not for developer user. Gets a response ready to participate in the CORS protocol.
    void
    CorsSupportHelper.prepareResponse(CorsRequestAdapter<Q> requestAdapter, CorsResponseAdapter<R> responseAdapter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Prepares a response with CORS headers, if the supplied request is in fact a CORS request and if upstream processing has not already determined the request should be refused.
    protected Optional<R>
    CorsSupportBase.processRequest(CorsRequestAdapter<Q> requestAdapter, CorsResponseAdapter<R> responseAdapter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Not for developer use. Submits a request adapter and response adapter for CORS processing.
    CorsSupportHelper.processRequest(CorsRequestAdapter<Q> requestAdapter, CorsResponseAdapter<R> responseAdapter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Processes a request according to the CORS rules, returning an Optional of the response type if the caller should send the response immediately (such as for a preflight response or an error response to a non-preflight CORS request).