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

com.amazonaws.services.frauddetector.model.Outcome Maven / Gradle / Ivy

Go to download

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

The 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.frauddetector.model;

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

/**
 * 

* The outcome. *

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

* The outcome name. *

*/ private String name; /** *

* The outcome description. *

*/ private String description; /** *

* The timestamp when the outcome was last updated. *

*/ private String lastUpdatedTime; /** *

* The timestamp when the outcome was created. *

*/ private String createdTime; /** *

* The outcome ARN. *

*/ private String arn; /** *

* The outcome name. *

* * @param name * The outcome name. */ public void setName(String name) { this.name = name; } /** *

* The outcome name. *

* * @return The outcome name. */ public String getName() { return this.name; } /** *

* The outcome name. *

* * @param name * The outcome name. * @return Returns a reference to this object so that method calls can be chained together. */ public Outcome withName(String name) { setName(name); return this; } /** *

* The outcome description. *

* * @param description * The outcome description. */ public void setDescription(String description) { this.description = description; } /** *

* The outcome description. *

* * @return The outcome description. */ public String getDescription() { return this.description; } /** *

* The outcome description. *

* * @param description * The outcome description. * @return Returns a reference to this object so that method calls can be chained together. */ public Outcome withDescription(String description) { setDescription(description); return this; } /** *

* The timestamp when the outcome was last updated. *

* * @param lastUpdatedTime * The timestamp when the outcome was last updated. */ public void setLastUpdatedTime(String lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } /** *

* The timestamp when the outcome was last updated. *

* * @return The timestamp when the outcome was last updated. */ public String getLastUpdatedTime() { return this.lastUpdatedTime; } /** *

* The timestamp when the outcome was last updated. *

* * @param lastUpdatedTime * The timestamp when the outcome was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public Outcome withLastUpdatedTime(String lastUpdatedTime) { setLastUpdatedTime(lastUpdatedTime); return this; } /** *

* The timestamp when the outcome was created. *

* * @param createdTime * The timestamp when the outcome was created. */ public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } /** *

* The timestamp when the outcome was created. *

* * @return The timestamp when the outcome was created. */ public String getCreatedTime() { return this.createdTime; } /** *

* The timestamp when the outcome was created. *

* * @param createdTime * The timestamp when the outcome was created. * @return Returns a reference to this object so that method calls can be chained together. */ public Outcome withCreatedTime(String createdTime) { setCreatedTime(createdTime); return this; } /** *

* The outcome ARN. *

* * @param arn * The outcome ARN. */ public void setArn(String arn) { this.arn = arn; } /** *

* The outcome ARN. *

* * @return The outcome ARN. */ public String getArn() { return this.arn; } /** *

* The outcome ARN. *

* * @param arn * The outcome ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public Outcome withArn(String arn) { setArn(arn); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getLastUpdatedTime() != null) sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()).append(","); if (getCreatedTime() != null) sb.append("CreatedTime: ").append(getCreatedTime()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Outcome == false) return false; Outcome other = (Outcome) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null) return false; if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == false) return false; if (other.getCreatedTime() == null ^ this.getCreatedTime() == null) return false; if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode()); hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); return hashCode; } @Override public Outcome clone() { try { return (Outcome) 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.frauddetector.model.transform.OutcomeMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy