package com.tests; import javax.servlet.http.HttpServletRequest; public class Macros { @SuppressWarnings("unchecked") public static T attr(String attribute, HttpServletRequest request){ return (T)request.getAttribute(attribute); } }