Package com.iizix.jetty
Interface IExternalBrowserPages
- All Known Implementing Classes:
- ExternalBrowserPagesImpl,- ExternalBrowserPagesImpl
public interface IExternalBrowserPages
Page interface for external browsers.
- Author:
- Christopher Mindus
- Method SummaryModifier and TypeMethodDescription- boolean- doAuthenticate- (PortConfig portConfig, String target) Checks if a request URL is a WebSocket request or an Application URI that should not use authentication.- getCustomizedAppHTML- (File file, String appID, String lang) Gets a customized "iiziApp.html" file for a specific application ID and optional language.- getFileOrResource- (String location, String target) Gets a File or Resource redirection from a web server target request, used for e.g.- boolean- isTargetValid- (PortConfig portConfig, String target) Checks for valid target to handle.- void- print- (PortConfig portConfig, PrintWriter pw, String root, String target, HttpServletRequest request, HttpServletResponse response) Print the page output.
- Method Details- isTargetValidChecks for valid target to handle.- Parameters:
- portConfig- The port configuration.
- target- The target URI.
- Returns:
- true if target is processed as an external page, false otherwise.
 
- doAuthenticateChecks if a request URL is a WebSocket request or an Application URI that should not use authentication.- Parameters:
- portConfig- The port configuration.
- target- The target URI.
- Returns:
- true if authentication should be performed, false otherwise.
 
- printvoid print- (PortConfig portConfig, PrintWriter pw, String root, String target, HttpServletRequest request, HttpServletResponse response) throws IOException Print the page output.- Parameters:
- portConfig- The port configuration.
- pw- The print writer.
- root- The web server root.
- target- Target page.
- request- The request.
- response- The response.
- Throws:
- IOException- For I/O errors.
 
- getFileOrResourceGets a File or Resource redirection from a web server target request, used for e.g. Asset resource files when used on the server and the file is inside a Jar.
- getCustomizedAppHTMLGets a customized "iiziApp.html" file for a specific application ID and optional language.- Parameters:
- file- The compressed iiziApp.html file without customization.
- appID- The application ID.
- lang- The language requested, or- nullfor default.
- Returns:
- The customized (and probably cached) file to send instead of the un-customized one, or nullfor none, i.e. in case an application ID is not found.