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

pl.edu.icm.unity.saml.sp.web.VaadinResponseToServletProxy Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
/*
 * Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */
package pl.edu.icm.unity.saml.sp.web;

import com.vaadin.flow.server.VaadinServletResponse;

import jakarta.servlet.http.HttpServletResponse;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class VaadinResponseToServletProxy implements InvocationHandler
{
	private VaadinServletResponse response;
	
	private VaadinResponseToServletProxy(VaadinServletResponse response)
	{
		this.response = response;
	}

	public static HttpServletResponse getProxiedResponse(VaadinServletResponse response)
	{
		return (HttpServletResponse) Proxy.newProxyInstance(
				HttpServletResponse.class.getClassLoader(), 
				new Class[] {HttpServletResponse.class}, 
				new VaadinResponseToServletProxy(response));
	}
	
	@Override
	public Object invoke(Object proxy, Method method, Object[] args) throws Throwable
	{
		Method m = findMethod(method);
		return m.invoke(response, args);
	}

	private Method findMethod(Method method) throws Throwable
	{
		try
		{
			return VaadinServletResponse.class.getMethod(method.getName(),
					method.getParameterTypes());
		} catch (NoSuchMethodException e)
		{
			throw new IllegalStateException("Trying to invoke method " + method  
					+ " on VaadinServletResponse, which can not be found", e);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy