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

com.amazonaws.services.wafv2.model.ResponseInspectionBodyContains Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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.wafv2.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Configures inspection of the response body. WAF can inspect the first 65,536 bytes (64 KB) of the response body. This * is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and * AWSManagedRulesACFPRuleSet. *

* *

* Response inspection is available only in web ACLs that protect Amazon CloudFront distributions. *

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

* Strings in the body of the response that indicate a successful login or account creation attempt. To be counted * as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must * be unique among the success and failure strings. *

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] *

*/ private java.util.List successStrings; /** *

* Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a * failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be * unique among the success and failure strings. *

*

* JSON example: "FailureStrings": [ "Request failed" ] *

*/ private java.util.List failureStrings; /** *

* Strings in the body of the response that indicate a successful login or account creation attempt. To be counted * as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must * be unique among the success and failure strings. *

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] *

* * @return Strings in the body of the response that indicate a successful login or account creation attempt. To be * counted as a success, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] */ public java.util.List getSuccessStrings() { return successStrings; } /** *

* Strings in the body of the response that indicate a successful login or account creation attempt. To be counted * as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must * be unique among the success and failure strings. *

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] *

* * @param successStrings * Strings in the body of the response that indicate a successful login or account creation attempt. To be * counted as a success, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] */ public void setSuccessStrings(java.util.Collection successStrings) { if (successStrings == null) { this.successStrings = null; return; } this.successStrings = new java.util.ArrayList(successStrings); } /** *

* Strings in the body of the response that indicate a successful login or account creation attempt. To be counted * as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must * be unique among the success and failure strings. *

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setSuccessStrings(java.util.Collection)} or {@link #withSuccessStrings(java.util.Collection)} if you want * to override the existing values. *

* * @param successStrings * Strings in the body of the response that indicate a successful login or account creation attempt. To be * counted as a success, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseInspectionBodyContains withSuccessStrings(String... successStrings) { if (this.successStrings == null) { setSuccessStrings(new java.util.ArrayList(successStrings.length)); } for (String ele : successStrings) { this.successStrings.add(ele); } return this; } /** *

* Strings in the body of the response that indicate a successful login or account creation attempt. To be counted * as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must * be unique among the success and failure strings. *

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] *

* * @param successStrings * Strings in the body of the response that indicate a successful login or account creation attempt. To be * counted as a success, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON examples: "SuccessStrings": [ "Login successful" ] and * "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ] * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseInspectionBodyContains withSuccessStrings(java.util.Collection successStrings) { setSuccessStrings(successStrings); return this; } /** *

* Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a * failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be * unique among the success and failure strings. *

*

* JSON example: "FailureStrings": [ "Request failed" ] *

* * @return Strings in the body of the response that indicate a failed login or account creation attempt. To be * counted as a failure, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON example: "FailureStrings": [ "Request failed" ] */ public java.util.List getFailureStrings() { return failureStrings; } /** *

* Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a * failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be * unique among the success and failure strings. *

*

* JSON example: "FailureStrings": [ "Request failed" ] *

* * @param failureStrings * Strings in the body of the response that indicate a failed login or account creation attempt. To be * counted as a failure, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON example: "FailureStrings": [ "Request failed" ] */ public void setFailureStrings(java.util.Collection failureStrings) { if (failureStrings == null) { this.failureStrings = null; return; } this.failureStrings = new java.util.ArrayList(failureStrings); } /** *

* Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a * failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be * unique among the success and failure strings. *

*

* JSON example: "FailureStrings": [ "Request failed" ] *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setFailureStrings(java.util.Collection)} or {@link #withFailureStrings(java.util.Collection)} if you want * to override the existing values. *

* * @param failureStrings * Strings in the body of the response that indicate a failed login or account creation attempt. To be * counted as a failure, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON example: "FailureStrings": [ "Request failed" ] * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseInspectionBodyContains withFailureStrings(String... failureStrings) { if (this.failureStrings == null) { setFailureStrings(new java.util.ArrayList(failureStrings.length)); } for (String ele : failureStrings) { this.failureStrings.add(ele); } return this; } /** *

* Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a * failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be * unique among the success and failure strings. *

*

* JSON example: "FailureStrings": [ "Request failed" ] *

* * @param failureStrings * Strings in the body of the response that indicate a failed login or account creation attempt. To be * counted as a failure, the string can be anywhere in the body and must be an exact match, including case. * Each string must be unique among the success and failure strings.

*

* JSON example: "FailureStrings": [ "Request failed" ] * @return Returns a reference to this object so that method calls can be chained together. */ public ResponseInspectionBodyContains withFailureStrings(java.util.Collection failureStrings) { setFailureStrings(failureStrings); 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 (getSuccessStrings() != null) sb.append("SuccessStrings: ").append(getSuccessStrings()).append(","); if (getFailureStrings() != null) sb.append("FailureStrings: ").append(getFailureStrings()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ResponseInspectionBodyContains == false) return false; ResponseInspectionBodyContains other = (ResponseInspectionBodyContains) obj; if (other.getSuccessStrings() == null ^ this.getSuccessStrings() == null) return false; if (other.getSuccessStrings() != null && other.getSuccessStrings().equals(this.getSuccessStrings()) == false) return false; if (other.getFailureStrings() == null ^ this.getFailureStrings() == null) return false; if (other.getFailureStrings() != null && other.getFailureStrings().equals(this.getFailureStrings()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSuccessStrings() == null) ? 0 : getSuccessStrings().hashCode()); hashCode = prime * hashCode + ((getFailureStrings() == null) ? 0 : getFailureStrings().hashCode()); return hashCode; } @Override public ResponseInspectionBodyContains clone() { try { return (ResponseInspectionBodyContains) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.wafv2.model.transform.ResponseInspectionBodyContainsMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy