Class HandlerMapping
java.lang.Object
com.microsoft.azure.management.appservice.HandlerMapping
The IIS handler mappings used to define which handler processes HTTP
requests with certain extension.
For example, it is used to configure php-cgi.exe process to handle all HTTP
requests with *.php extension.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet command-line arguments to be passed to the script processor.Get requests with this extension will be handled using the specified FastCGI application.Get the absolute path to the FastCGI application.withArguments
(String arguments) Set command-line arguments to be passed to the script processor.withExtension
(String extension) Set requests with this extension will be handled using the specified FastCGI application.withScriptProcessor
(String scriptProcessor) Set the absolute path to the FastCGI application.
-
Constructor Details
-
HandlerMapping
public HandlerMapping()
-
-
Method Details
-
extension
Get requests with this extension will be handled using the specified FastCGI application.- Returns:
- the extension value
-
withExtension
Set requests with this extension will be handled using the specified FastCGI application.- Parameters:
extension
- the extension value to set- Returns:
- the HandlerMapping object itself.
-
scriptProcessor
Get the absolute path to the FastCGI application.- Returns:
- the scriptProcessor value
-
withScriptProcessor
Set the absolute path to the FastCGI application.- Parameters:
scriptProcessor
- the scriptProcessor value to set- Returns:
- the HandlerMapping object itself.
-
arguments
Get command-line arguments to be passed to the script processor.- Returns:
- the arguments value
-
withArguments
Set command-line arguments to be passed to the script processor.- Parameters:
arguments
- the arguments value to set- Returns:
- the HandlerMapping object itself.
-