HandlerMapping Class
- java.
lang. Object - com.
microsoft. azure. management. appservice. HandlerMapping
- com.
public class 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.
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
arguments()
Get the arguments value. |
String |
extension()
Get the extension value. |
String |
scriptProcessor()
Get the scriptProcessor value. |
Handler |
withArguments(String arguments)
Set the arguments value. |
Handler |
withExtension(String extension)
Set the extension value. |
Handler |
withScriptProcessor(String scriptProcessor)
Set the scriptProcessor value. |
Method Details
arguments
public String arguments()
Get the arguments value.
Returns:
extension
public String extension()
Get the extension value.
Returns:
scriptProcessor
public String scriptProcessor()
Get the scriptProcessor value.
Returns:
withArguments
public HandlerMapping withArguments(String arguments)
Set the arguments value.
Parameters:
Returns:
withExtension
public HandlerMapping withExtension(String extension)
Set the extension value.
Parameters:
Returns:
withScriptProcessor
public HandlerMapping withScriptProcessor(String scriptProcessor)
Set the scriptProcessor value.
Parameters:
Returns:
Applies to
Azure SDK for Java