
com.zandero.rest.context.RequestContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest.context Show documentation
Show all versions of rest.context Show documentation
REST easy request and security context
The newest version!
package com.zandero.rest.context;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.SecurityContext;
import java.util.Map;
/**
*
*/
public interface RequestContext extends SecurityContext {
Map getHeaders(HttpServletRequest servletRequest);
String getScheme();
String getDomainName();
int getPort();
String getClientIP();
String getHeader(String name);
Map getHeaders();
String getQuery();
String getBaseUrl();
String getPath();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy