com.amazonaws.services.workmail.model.GetAccessControlEffectResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-workmail Show documentation
/*
* 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.workmail.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetAccessControlEffectResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The rule effect.
*
*/
private String effect;
/**
*
* The rules that match the given parameters, resulting in an effect.
*
*/
private java.util.List matchedRules;
/**
*
* The rule effect.
*
*
* @param effect
* The rule effect.
* @see AccessControlRuleEffect
*/
public void setEffect(String effect) {
this.effect = effect;
}
/**
*
* The rule effect.
*
*
* @return The rule effect.
* @see AccessControlRuleEffect
*/
public String getEffect() {
return this.effect;
}
/**
*
* The rule effect.
*
*
* @param effect
* The rule effect.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AccessControlRuleEffect
*/
public GetAccessControlEffectResult withEffect(String effect) {
setEffect(effect);
return this;
}
/**
*
* The rule effect.
*
*
* @param effect
* The rule effect.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AccessControlRuleEffect
*/
public GetAccessControlEffectResult withEffect(AccessControlRuleEffect effect) {
this.effect = effect.toString();
return this;
}
/**
*
* The rules that match the given parameters, resulting in an effect.
*
*
* @return The rules that match the given parameters, resulting in an effect.
*/
public java.util.List getMatchedRules() {
return matchedRules;
}
/**
*
* The rules that match the given parameters, resulting in an effect.
*
*
* @param matchedRules
* The rules that match the given parameters, resulting in an effect.
*/
public void setMatchedRules(java.util.Collection matchedRules) {
if (matchedRules == null) {
this.matchedRules = null;
return;
}
this.matchedRules = new java.util.ArrayList(matchedRules);
}
/**
*
* The rules that match the given parameters, resulting in an effect.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setMatchedRules(java.util.Collection)} or {@link #withMatchedRules(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param matchedRules
* The rules that match the given parameters, resulting in an effect.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAccessControlEffectResult withMatchedRules(String... matchedRules) {
if (this.matchedRules == null) {
setMatchedRules(new java.util.ArrayList(matchedRules.length));
}
for (String ele : matchedRules) {
this.matchedRules.add(ele);
}
return this;
}
/**
*
* The rules that match the given parameters, resulting in an effect.
*
*
* @param matchedRules
* The rules that match the given parameters, resulting in an effect.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAccessControlEffectResult withMatchedRules(java.util.Collection matchedRules) {
setMatchedRules(matchedRules);
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 (getEffect() != null)
sb.append("Effect: ").append(getEffect()).append(",");
if (getMatchedRules() != null)
sb.append("MatchedRules: ").append(getMatchedRules());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetAccessControlEffectResult == false)
return false;
GetAccessControlEffectResult other = (GetAccessControlEffectResult) obj;
if (other.getEffect() == null ^ this.getEffect() == null)
return false;
if (other.getEffect() != null && other.getEffect().equals(this.getEffect()) == false)
return false;
if (other.getMatchedRules() == null ^ this.getMatchedRules() == null)
return false;
if (other.getMatchedRules() != null && other.getMatchedRules().equals(this.getMatchedRules()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEffect() == null) ? 0 : getEffect().hashCode());
hashCode = prime * hashCode + ((getMatchedRules() == null) ? 0 : getMatchedRules().hashCode());
return hashCode;
}
@Override
public GetAccessControlEffectResult clone() {
try {
return (GetAccessControlEffectResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}