Class CorsSettings
java.lang.Object
com.microsoft.azure.management.appservice.CorsSettings
Cross-Origin Resource Sharing (CORS) settings for the app.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345).Get gets or sets whether CORS requests with credentials are allowed.withAllowedOrigins
(List<String> allowedOrigins) Set gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345).withSupportCredentials
(Boolean supportCredentials) Set gets or sets whether CORS requests with credentials are allowed.
-
Constructor Details
-
CorsSettings
public CorsSettings()
-
-
Method Details
-
allowedOrigins
Get gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all.- Returns:
- the allowedOrigins value
-
withAllowedOrigins
Set gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all.- Parameters:
allowedOrigins
- the allowedOrigins value to set- Returns:
- the CorsSettings object itself.
-
supportCredentials
Get gets or sets whether CORS requests with credentials are allowed. See https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials for more details.- Returns:
- the supportCredentials value
-
withSupportCredentials
Set gets or sets whether CORS requests with credentials are allowed. See https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials for more details.- Parameters:
supportCredentials
- the supportCredentials value to set- Returns:
- the CorsSettings object itself.
-