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

com.amazonaws.services.robomaker.model.SyncDeploymentJobResult Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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.robomaker.model;

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

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

    /**
     * 

* The Amazon Resource Name (ARN) of the synchronization request. *

*/ private String arn; /** *

* The Amazon Resource Name (ARN) of the fleet. *

*/ private String fleet; /** *

* The status of the synchronization job. *

*/ private String status; /** *

* Information about the deployment configuration. *

*/ private DeploymentConfig deploymentConfig; /** *

* Information about the deployment application configurations. *

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

* The failure reason if the job fails. *

*/ private String failureReason; /** *

* The failure code if the job fails: *

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
*
*/ private String failureCode; /** *

* The time, in milliseconds since the epoch, when the fleet was created. *

*/ private java.util.Date createdAt; /** *

* The Amazon Resource Name (ARN) of the synchronization request. *

* * @param arn * The Amazon Resource Name (ARN) of the synchronization request. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the synchronization request. *

* * @return The Amazon Resource Name (ARN) of the synchronization request. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the synchronization request. *

* * @param arn * The Amazon Resource Name (ARN) of the synchronization request. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withArn(String arn) { setArn(arn); return this; } /** *

* The Amazon Resource Name (ARN) of the fleet. *

* * @param fleet * The Amazon Resource Name (ARN) of the fleet. */ public void setFleet(String fleet) { this.fleet = fleet; } /** *

* The Amazon Resource Name (ARN) of the fleet. *

* * @return The Amazon Resource Name (ARN) of the fleet. */ public String getFleet() { return this.fleet; } /** *

* The Amazon Resource Name (ARN) of the fleet. *

* * @param fleet * The Amazon Resource Name (ARN) of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withFleet(String fleet) { setFleet(fleet); return this; } /** *

* The status of the synchronization job. *

* * @param status * The status of the synchronization job. * @see DeploymentStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the synchronization job. *

* * @return The status of the synchronization job. * @see DeploymentStatus */ public String getStatus() { return this.status; } /** *

* The status of the synchronization job. *

* * @param status * The status of the synchronization job. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ public SyncDeploymentJobResult withStatus(String status) { setStatus(status); return this; } /** *

* The status of the synchronization job. *

* * @param status * The status of the synchronization job. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ public SyncDeploymentJobResult withStatus(DeploymentStatus status) { this.status = status.toString(); return this; } /** *

* Information about the deployment configuration. *

* * @param deploymentConfig * Information about the deployment configuration. */ public void setDeploymentConfig(DeploymentConfig deploymentConfig) { this.deploymentConfig = deploymentConfig; } /** *

* Information about the deployment configuration. *

* * @return Information about the deployment configuration. */ public DeploymentConfig getDeploymentConfig() { return this.deploymentConfig; } /** *

* Information about the deployment configuration. *

* * @param deploymentConfig * Information about the deployment configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withDeploymentConfig(DeploymentConfig deploymentConfig) { setDeploymentConfig(deploymentConfig); return this; } /** *

* Information about the deployment application configurations. *

* * @return Information about the deployment application configurations. */ public java.util.List getDeploymentApplicationConfigs() { return deploymentApplicationConfigs; } /** *

* Information about the deployment application configurations. *

* * @param deploymentApplicationConfigs * Information about the deployment application configurations. */ public void setDeploymentApplicationConfigs(java.util.Collection deploymentApplicationConfigs) { if (deploymentApplicationConfigs == null) { this.deploymentApplicationConfigs = null; return; } this.deploymentApplicationConfigs = new java.util.ArrayList(deploymentApplicationConfigs); } /** *

* Information about the deployment application configurations. *

*

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

* * @param deploymentApplicationConfigs * Information about the deployment application configurations. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withDeploymentApplicationConfigs(DeploymentApplicationConfig... deploymentApplicationConfigs) { if (this.deploymentApplicationConfigs == null) { setDeploymentApplicationConfigs(new java.util.ArrayList(deploymentApplicationConfigs.length)); } for (DeploymentApplicationConfig ele : deploymentApplicationConfigs) { this.deploymentApplicationConfigs.add(ele); } return this; } /** *

* Information about the deployment application configurations. *

* * @param deploymentApplicationConfigs * Information about the deployment application configurations. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withDeploymentApplicationConfigs(java.util.Collection deploymentApplicationConfigs) { setDeploymentApplicationConfigs(deploymentApplicationConfigs); return this; } /** *

* The failure reason if the job fails. *

* * @param failureReason * The failure reason if the job fails. */ public void setFailureReason(String failureReason) { this.failureReason = failureReason; } /** *

* The failure reason if the job fails. *

* * @return The failure reason if the job fails. */ public String getFailureReason() { return this.failureReason; } /** *

* The failure reason if the job fails. *

* * @param failureReason * The failure reason if the job fails. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withFailureReason(String failureReason) { setFailureReason(failureReason); return this; } /** *

* The failure code if the job fails: *

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
*
* * @param failureCode * The failure code if the job fails:

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
* @see DeploymentJobErrorCode */ public void setFailureCode(String failureCode) { this.failureCode = failureCode; } /** *

* The failure code if the job fails: *

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
*
* * @return The failure code if the job fails:

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
* @see DeploymentJobErrorCode */ public String getFailureCode() { return this.failureCode; } /** *

* The failure code if the job fails: *

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
*
* * @param failureCode * The failure code if the job fails:

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
* @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentJobErrorCode */ public SyncDeploymentJobResult withFailureCode(String failureCode) { setFailureCode(failureCode); return this; } /** *

* The failure code if the job fails: *

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
*
* * @param failureCode * The failure code if the job fails:

*
*
InternalServiceError
*
*

* Internal service error. *

*
*
RobotApplicationCrash
*
*

* Robot application exited abnormally. *

*
*
SimulationApplicationCrash
*
*

* Simulation application exited abnormally. *

*
*
BadPermissionsRobotApplication
*
*

* Robot application bundle could not be downloaded. *

*
*
BadPermissionsSimulationApplication
*
*

* Simulation application bundle could not be downloaded. *

*
*
BadPermissionsS3Output
*
*

* Unable to publish outputs to customer-provided S3 bucket. *

*
*
BadPermissionsCloudwatchLogs
*
*

* Unable to publish logs to customer-provided CloudWatch Logs resource. *

*
*
SubnetIpLimitExceeded
*
*

* Subnet IP limit exceeded. *

*
*
ENILimitExceeded
*
*

* ENI limit exceeded. *

*
*
BadPermissionsUserCredentials
*
*

* Unable to use the Role provided. *

*
*
InvalidBundleRobotApplication
*
*

* Robot bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
InvalidBundleSimulationApplication
*
*

* Simulation bundle cannot be extracted (invalid format, bundling error, or other issue). *

*
*
RobotApplicationVersionMismatchedEtag
*
*

* Etag for RobotApplication does not match value during version creation. *

*
*
SimulationApplicationVersionMismatchedEtag
*
*

* Etag for SimulationApplication does not match value during version creation. *

*
* @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentJobErrorCode */ public SyncDeploymentJobResult withFailureCode(DeploymentJobErrorCode failureCode) { this.failureCode = failureCode.toString(); return this; } /** *

* The time, in milliseconds since the epoch, when the fleet was created. *

* * @param createdAt * The time, in milliseconds since the epoch, when the fleet was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The time, in milliseconds since the epoch, when the fleet was created. *

* * @return The time, in milliseconds since the epoch, when the fleet was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The time, in milliseconds since the epoch, when the fleet was created. *

* * @param createdAt * The time, in milliseconds since the epoch, when the fleet was created. * @return Returns a reference to this object so that method calls can be chained together. */ public SyncDeploymentJobResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getFleet() != null) sb.append("Fleet: ").append(getFleet()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getDeploymentConfig() != null) sb.append("DeploymentConfig: ").append(getDeploymentConfig()).append(","); if (getDeploymentApplicationConfigs() != null) sb.append("DeploymentApplicationConfigs: ").append(getDeploymentApplicationConfigs()).append(","); if (getFailureReason() != null) sb.append("FailureReason: ").append(getFailureReason()).append(","); if (getFailureCode() != null) sb.append("FailureCode: ").append(getFailureCode()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SyncDeploymentJobResult == false) return false; SyncDeploymentJobResult other = (SyncDeploymentJobResult) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getFleet() == null ^ this.getFleet() == null) return false; if (other.getFleet() != null && other.getFleet().equals(this.getFleet()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getDeploymentConfig() == null ^ this.getDeploymentConfig() == null) return false; if (other.getDeploymentConfig() != null && other.getDeploymentConfig().equals(this.getDeploymentConfig()) == false) return false; if (other.getDeploymentApplicationConfigs() == null ^ this.getDeploymentApplicationConfigs() == null) return false; if (other.getDeploymentApplicationConfigs() != null && other.getDeploymentApplicationConfigs().equals(this.getDeploymentApplicationConfigs()) == false) return false; if (other.getFailureReason() == null ^ this.getFailureReason() == null) return false; if (other.getFailureReason() != null && other.getFailureReason().equals(this.getFailureReason()) == false) return false; if (other.getFailureCode() == null ^ this.getFailureCode() == null) return false; if (other.getFailureCode() != null && other.getFailureCode().equals(this.getFailureCode()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getFleet() == null) ? 0 : getFleet().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getDeploymentConfig() == null) ? 0 : getDeploymentConfig().hashCode()); hashCode = prime * hashCode + ((getDeploymentApplicationConfigs() == null) ? 0 : getDeploymentApplicationConfigs().hashCode()); hashCode = prime * hashCode + ((getFailureReason() == null) ? 0 : getFailureReason().hashCode()); hashCode = prime * hashCode + ((getFailureCode() == null) ? 0 : getFailureCode().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); return hashCode; } @Override public SyncDeploymentJobResult clone() { try { return (SyncDeploymentJobResult) 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