Package org.apache.struts2.action
Interface ServletResponseAware
- All Known Implementing Classes:
- CspReportAction,- DefaultCspReportAction
public interface ServletResponseAware
All Actions that want to have access to the servlet response object must implement this interface.
 This interface is only relevant if the Action is used in a servlet environment.
 Note that using this interface makes the Action tied to a servlet environment, so it should be
 avoided if possible since things like unit testing will become more difficult.
- 
Method SummaryModifier and TypeMethodDescriptionvoidwithServletResponse(jakarta.servlet.http.HttpServletResponse response) Applies the HTTP response object in implementing classes.
- 
Method Details- 
withServletResponsevoid withServletResponse(jakarta.servlet.http.HttpServletResponse response) Applies the HTTP response object in implementing classes.- Parameters:
- response- the HTTP response.
 
 
-