All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.serverless.proxy.jersey.suppliers.AwsProxyServletResponseSupplier Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
 * with the License. A copy of the License is located at
 *
 * http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
 * OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.serverless.proxy.jersey.suppliers;


import org.glassfish.jersey.server.ContainerRequest;

import jakarta.servlet.http.HttpServletResponse;
import jakarta.ws.rs.core.Context;

import java.util.function.Supplier;

import static com.amazonaws.serverless.proxy.jersey.JerseyHandlerFilter.JERSEY_SERVLET_RESPONSE_PROPERTY;


/**
 * Implementation of Jersey's Factory object for HttpServletResponse objects. This can be used
 * to write data directly to the servlet response for the method, without using Jersey's ContainerResponse
 *
 * 
 * 
 *     ResourceConfig app = new ResourceConfig().packages("my.app.package")
 *         .register(new AbstractBinder() {
 *             {@literal @}Override
 *             protected void configure() {
 *                 bindFactory(AwsProxyServletResponseSupplier.class)
 *                     .to(HttpServletResponse.class)
 *                     .in(RequestScoped.class);
 *            }
 *       });
 * 
 * 
*/ public class AwsProxyServletResponseSupplier implements Supplier { @Context ContainerRequest currentRequest; //------------------------------------------------------------- // Implementation - Factory //------------------------------------------------------------- @Override public HttpServletResponse get() { return getServletResponse(); } private HttpServletResponse getServletResponse() { return (HttpServletResponse)currentRequest.getProperty(JERSEY_SERVLET_RESPONSE_PROPERTY); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy