All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.cloudfront.model.ResponseHeadersPolicyXSSProtection Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CloudFront module holds the client classes that are used for communicating with Amazon CloudFront Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.cloudfront.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* Determines whether CloudFront includes the X-XSS-Protection HTTP response header and the header’s value. *

*

* For more information about the X-XSS-Protection HTTP response header, see X-XSS-Protection in the MDN Web * Docs. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ResponseHeadersPolicyXSSProtection implements Serializable, Cloneable { /** *

* A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header * received from the origin with the one specified in this response headers policy. *

*/ private Boolean override; /** *

* A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting * is true, the value of the X-XSS-Protection header is 1. When this setting * is false, the value of the X-XSS-Protection header is 0. *

*

* For more information about these settings, see X-XSS-Protection in the MDN * Web Docs. *

*/ private Boolean protection; /** *

* A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header. *

*

* For more information about this directive, see X-XSS-Protection in the MDN * Web Docs. *

*/ private Boolean modeBlock; /** *

* A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header. *

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in the MDN * Web Docs. *

*/ private String reportUri; /** *

* A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header * received from the origin with the one specified in this response headers policy. *

* * @param override * A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response * header received from the origin with the one specified in this response headers policy. */ public void setOverride(Boolean override) { this.override = override; } /** *

* A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header * received from the origin with the one specified in this response headers policy. *

* * @return A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response * header received from the origin with the one specified in this response headers policy. */ public Boolean getOverride() { return this.override; } /** *

* A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header * received from the origin with the one specified in this response headers policy. *

* * @param override * A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response * header received from the origin with the one specified in this response headers policy. * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseHeadersPolicyXSSProtection withOverride(Boolean override) { setOverride(override); return this; } /** *

* A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response header * received from the origin with the one specified in this response headers policy. *

* * @return A Boolean that determines whether CloudFront overrides the X-XSS-Protection HTTP response * header received from the origin with the one specified in this response headers policy. */ public Boolean isOverride() { return this.override; } /** *

* A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting * is true, the value of the X-XSS-Protection header is 1. When this setting * is false, the value of the X-XSS-Protection header is 0. *

*

* For more information about these settings, see X-XSS-Protection in the MDN * Web Docs. *

* * @param protection * A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this * setting is true, the value of the X-XSS-Protection header is 1. * When this setting is false, the value of the X-XSS-Protection header is * 0.

*

* For more information about these settings, see X-XSS-Protection in * the MDN Web Docs. */ public void setProtection(Boolean protection) { this.protection = protection; } /** *

* A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting * is true, the value of the X-XSS-Protection header is 1. When this setting * is false, the value of the X-XSS-Protection header is 0. *

*

* For more information about these settings, see X-XSS-Protection in the MDN * Web Docs. *

* * @return A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this * setting is true, the value of the X-XSS-Protection header is 1. * When this setting is false, the value of the X-XSS-Protection header is * 0.

*

* For more information about these settings, see X-XSS-Protection in * the MDN Web Docs. */ public Boolean getProtection() { return this.protection; } /** *

* A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting * is true, the value of the X-XSS-Protection header is 1. When this setting * is false, the value of the X-XSS-Protection header is 0. *

*

* For more information about these settings, see X-XSS-Protection in the MDN * Web Docs. *

* * @param protection * A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this * setting is true, the value of the X-XSS-Protection header is 1. * When this setting is false, the value of the X-XSS-Protection header is * 0.

*

* For more information about these settings, see X-XSS-Protection in * the MDN Web Docs. * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseHeadersPolicyXSSProtection withProtection(Boolean protection) { setProtection(protection); return this; } /** *

* A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this setting * is true, the value of the X-XSS-Protection header is 1. When this setting * is false, the value of the X-XSS-Protection header is 0. *

*

* For more information about these settings, see X-XSS-Protection in the MDN * Web Docs. *

* * @return A Boolean that determines the value of the X-XSS-Protection HTTP response header. When this * setting is true, the value of the X-XSS-Protection header is 1. * When this setting is false, the value of the X-XSS-Protection header is * 0.

*

* For more information about these settings, see X-XSS-Protection in * the MDN Web Docs. */ public Boolean isProtection() { return this.protection; } /** *

* A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header. *

*

* For more information about this directive, see X-XSS-Protection in the MDN * Web Docs. *

* * @param modeBlock * A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header.

*

* For more information about this directive, see X-XSS-Protection in * the MDN Web Docs. */ public void setModeBlock(Boolean modeBlock) { this.modeBlock = modeBlock; } /** *

* A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header. *

*

* For more information about this directive, see X-XSS-Protection in the MDN * Web Docs. *

* * @return A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header.

*

* For more information about this directive, see X-XSS-Protection in * the MDN Web Docs. */ public Boolean getModeBlock() { return this.modeBlock; } /** *

* A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header. *

*

* For more information about this directive, see X-XSS-Protection in the MDN * Web Docs. *

* * @param modeBlock * A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header.

*

* For more information about this directive, see X-XSS-Protection in * the MDN Web Docs. * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseHeadersPolicyXSSProtection withModeBlock(Boolean modeBlock) { setModeBlock(modeBlock); return this; } /** *

* A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header. *

*

* For more information about this directive, see X-XSS-Protection in the MDN * Web Docs. *

* * @return A Boolean that determines whether CloudFront includes the mode=block directive in the * X-XSS-Protection header.

*

* For more information about this directive, see X-XSS-Protection in * the MDN Web Docs. */ public Boolean isModeBlock() { return this.modeBlock; } /** *

* A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header. *

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in the MDN * Web Docs. *

* * @param reportUri * A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header.

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in * the MDN Web Docs. */ public void setReportUri(String reportUri) { this.reportUri = reportUri; } /** *

* A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header. *

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in the MDN * Web Docs. *

* * @return A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header.

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in * the MDN Web Docs. */ public String getReportUri() { return this.reportUri; } /** *

* A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header. *

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in the MDN * Web Docs. *

* * @param reportUri * A reporting URI, which CloudFront uses as the value of the report directive in the * X-XSS-Protection header.

*

* You cannot specify a ReportUri when ModeBlock is true. *

*

* For more information about using a reporting URL, see X-XSS-Protection in * the MDN Web Docs. * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseHeadersPolicyXSSProtection withReportUri(String reportUri) { setReportUri(reportUri); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getOverride() != null) sb.append("Override: ").append(getOverride()).append(","); if (getProtection() != null) sb.append("Protection: ").append(getProtection()).append(","); if (getModeBlock() != null) sb.append("ModeBlock: ").append(getModeBlock()).append(","); if (getReportUri() != null) sb.append("ReportUri: ").append(getReportUri()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ResponseHeadersPolicyXSSProtection == false) return false; ResponseHeadersPolicyXSSProtection other = (ResponseHeadersPolicyXSSProtection) obj; if (other.getOverride() == null ^ this.getOverride() == null) return false; if (other.getOverride() != null && other.getOverride().equals(this.getOverride()) == false) return false; if (other.getProtection() == null ^ this.getProtection() == null) return false; if (other.getProtection() != null && other.getProtection().equals(this.getProtection()) == false) return false; if (other.getModeBlock() == null ^ this.getModeBlock() == null) return false; if (other.getModeBlock() != null && other.getModeBlock().equals(this.getModeBlock()) == false) return false; if (other.getReportUri() == null ^ this.getReportUri() == null) return false; if (other.getReportUri() != null && other.getReportUri().equals(this.getReportUri()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOverride() == null) ? 0 : getOverride().hashCode()); hashCode = prime * hashCode + ((getProtection() == null) ? 0 : getProtection().hashCode()); hashCode = prime * hashCode + ((getModeBlock() == null) ? 0 : getModeBlock().hashCode()); hashCode = prime * hashCode + ((getReportUri() == null) ? 0 : getReportUri().hashCode()); return hashCode; } @Override public ResponseHeadersPolicyXSSProtection clone() { try { return (ResponseHeadersPolicyXSSProtection) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy