We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfeee8c commit 04b6364Copy full SHA for 04b6364
activeweb/src/main/java/org/javalite/activeweb/HttpSupport.java
@@ -634,7 +634,14 @@ protected int getRequestPort(){
634
return RequestUtils.getRequestPort();
635
}
636
637
-
+ /**
638
+ * Direct access to current <code>HttpServletRequest</code> for low level operations.
639
+ *
640
+ * @return instance of current <code>HttpServletRequest</code>.
641
+ */
642
+ protected HttpServletRequest getHttpServletRequest(){
643
+ return Context.getHttpRequest();
644
+ }
645
646
/**
647
* Returns port on which the of the server received current request.
0 commit comments