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

com.amazonaws.services.servermigration.model.Server Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Server Migration module holds the client classes that are used for communicating with AWS Server Migration 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.servermigration.model;

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

/**
 * 

* Represents a server. *

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

* The ID of the server. *

*/ private String serverId; /** *

* The type of server. *

*/ private String serverType; /** *

* Information about the VM server. *

*/ private VmServer vmServer; /** *

* The ID of the replication job. *

*/ private String replicationJobId; /** *

* Indicates whether the replication job is deleted or failed. *

*/ private Boolean replicationJobTerminated; /** *

* The ID of the server. *

* * @param serverId * The ID of the server. */ public void setServerId(String serverId) { this.serverId = serverId; } /** *

* The ID of the server. *

* * @return The ID of the server. */ public String getServerId() { return this.serverId; } /** *

* The ID of the server. *

* * @param serverId * The ID of the server. * @return Returns a reference to this object so that method calls can be chained together. */ public Server withServerId(String serverId) { setServerId(serverId); return this; } /** *

* The type of server. *

* * @param serverType * The type of server. * @see ServerType */ public void setServerType(String serverType) { this.serverType = serverType; } /** *

* The type of server. *

* * @return The type of server. * @see ServerType */ public String getServerType() { return this.serverType; } /** *

* The type of server. *

* * @param serverType * The type of server. * @return Returns a reference to this object so that method calls can be chained together. * @see ServerType */ public Server withServerType(String serverType) { setServerType(serverType); return this; } /** *

* The type of server. *

* * @param serverType * The type of server. * @see ServerType */ public void setServerType(ServerType serverType) { withServerType(serverType); } /** *

* The type of server. *

* * @param serverType * The type of server. * @return Returns a reference to this object so that method calls can be chained together. * @see ServerType */ public Server withServerType(ServerType serverType) { this.serverType = serverType.toString(); return this; } /** *

* Information about the VM server. *

* * @param vmServer * Information about the VM server. */ public void setVmServer(VmServer vmServer) { this.vmServer = vmServer; } /** *

* Information about the VM server. *

* * @return Information about the VM server. */ public VmServer getVmServer() { return this.vmServer; } /** *

* Information about the VM server. *

* * @param vmServer * Information about the VM server. * @return Returns a reference to this object so that method calls can be chained together. */ public Server withVmServer(VmServer vmServer) { setVmServer(vmServer); return this; } /** *

* The ID of the replication job. *

* * @param replicationJobId * The ID of the replication job. */ public void setReplicationJobId(String replicationJobId) { this.replicationJobId = replicationJobId; } /** *

* The ID of the replication job. *

* * @return The ID of the replication job. */ public String getReplicationJobId() { return this.replicationJobId; } /** *

* The ID of the replication job. *

* * @param replicationJobId * The ID of the replication job. * @return Returns a reference to this object so that method calls can be chained together. */ public Server withReplicationJobId(String replicationJobId) { setReplicationJobId(replicationJobId); return this; } /** *

* Indicates whether the replication job is deleted or failed. *

* * @param replicationJobTerminated * Indicates whether the replication job is deleted or failed. */ public void setReplicationJobTerminated(Boolean replicationJobTerminated) { this.replicationJobTerminated = replicationJobTerminated; } /** *

* Indicates whether the replication job is deleted or failed. *

* * @return Indicates whether the replication job is deleted or failed. */ public Boolean getReplicationJobTerminated() { return this.replicationJobTerminated; } /** *

* Indicates whether the replication job is deleted or failed. *

* * @param replicationJobTerminated * Indicates whether the replication job is deleted or failed. * @return Returns a reference to this object so that method calls can be chained together. */ public Server withReplicationJobTerminated(Boolean replicationJobTerminated) { setReplicationJobTerminated(replicationJobTerminated); return this; } /** *

* Indicates whether the replication job is deleted or failed. *

* * @return Indicates whether the replication job is deleted or failed. */ public Boolean isReplicationJobTerminated() { return this.replicationJobTerminated; } /** * 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 (getServerId() != null) sb.append("ServerId: ").append(getServerId()).append(","); if (getServerType() != null) sb.append("ServerType: ").append(getServerType()).append(","); if (getVmServer() != null) sb.append("VmServer: ").append(getVmServer()).append(","); if (getReplicationJobId() != null) sb.append("ReplicationJobId: ").append(getReplicationJobId()).append(","); if (getReplicationJobTerminated() != null) sb.append("ReplicationJobTerminated: ").append(getReplicationJobTerminated()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Server == false) return false; Server other = (Server) obj; if (other.getServerId() == null ^ this.getServerId() == null) return false; if (other.getServerId() != null && other.getServerId().equals(this.getServerId()) == false) return false; if (other.getServerType() == null ^ this.getServerType() == null) return false; if (other.getServerType() != null && other.getServerType().equals(this.getServerType()) == false) return false; if (other.getVmServer() == null ^ this.getVmServer() == null) return false; if (other.getVmServer() != null && other.getVmServer().equals(this.getVmServer()) == false) return false; if (other.getReplicationJobId() == null ^ this.getReplicationJobId() == null) return false; if (other.getReplicationJobId() != null && other.getReplicationJobId().equals(this.getReplicationJobId()) == false) return false; if (other.getReplicationJobTerminated() == null ^ this.getReplicationJobTerminated() == null) return false; if (other.getReplicationJobTerminated() != null && other.getReplicationJobTerminated().equals(this.getReplicationJobTerminated()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServerId() == null) ? 0 : getServerId().hashCode()); hashCode = prime * hashCode + ((getServerType() == null) ? 0 : getServerType().hashCode()); hashCode = prime * hashCode + ((getVmServer() == null) ? 0 : getVmServer().hashCode()); hashCode = prime * hashCode + ((getReplicationJobId() == null) ? 0 : getReplicationJobId().hashCode()); hashCode = prime * hashCode + ((getReplicationJobTerminated() == null) ? 0 : getReplicationJobTerminated().hashCode()); return hashCode; } @Override public Server clone() { try { return (Server) 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.servermigration.model.transform.ServerMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy