/* * Copyright 2018-2023 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.transfer.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Specifies the user name, server ID, and session ID for a workflow. *

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

* A unique string that identifies a Transfer Family user associated with a server. *

*/ private String userName; /** *

* The system-assigned unique identifier for a Transfer server instance. *

*/ private String serverId; /** *

* The system-assigned unique identifier for a session that corresponds to the workflow. *

*/ private String sessionId; /** *

* A unique string that identifies a Transfer Family user associated with a server. *

* * @param userName * A unique string that identifies a Transfer Family user associated with a server. */ public void setUserName(String userName) { this.userName = userName; } /** *

* A unique string that identifies a Transfer Family user associated with a server. *

* * @return A unique string that identifies a Transfer Family user associated with a server. */ public String getUserName() { return this.userName; } /** *

* A unique string that identifies a Transfer Family user associated with a server. *

* * @param userName * A unique string that identifies a Transfer Family user associated with a server. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetails withUserName(String userName) { setUserName(userName); return this; } /** *

* The system-assigned unique identifier for a Transfer server instance. *

* * @param serverId * The system-assigned unique identifier for a Transfer server instance. */ public void setServerId(String serverId) { this.serverId = serverId; } /** *

* The system-assigned unique identifier for a Transfer server instance. *

* * @return The system-assigned unique identifier for a Transfer server instance. */ public String getServerId() { return this.serverId; } /** *

* The system-assigned unique identifier for a Transfer server instance. *

* * @param serverId * The system-assigned unique identifier for a Transfer server instance. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetails withServerId(String serverId) { setServerId(serverId); return this; } /** *

* The system-assigned unique identifier for a session that corresponds to the workflow. *

* * @param sessionId * The system-assigned unique identifier for a session that corresponds to the workflow. */ public void setSessionId(String sessionId) { this.sessionId = sessionId; } /** *

* The system-assigned unique identifier for a session that corresponds to the workflow. *

* * @return The system-assigned unique identifier for a session that corresponds to the workflow. */ public String getSessionId() { return this.sessionId; } /** *

* The system-assigned unique identifier for a session that corresponds to the workflow. *

* * @param sessionId * The system-assigned unique identifier for a session that corresponds to the workflow. * @return Returns a reference to this object so that method calls can be chained together. */ public UserDetails withSessionId(String sessionId) { setSessionId(sessionId); 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 (getUserName() != null) sb.append("UserName: ").append(getUserName()).append(","); if (getServerId() != null) sb.append("ServerId: ").append(getServerId()).append(","); if (getSessionId() != null) sb.append("SessionId: ").append(getSessionId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UserDetails == false) return false; UserDetails other = (UserDetails) obj; if (other.getUserName() == null ^ this.getUserName() == null) return false; if (other.getUserName() != null && other.getUserName().equals(this.getUserName()) == false) return false; if (other.getServerId() == null ^ this.getServerId() == null) return false; if (other.getServerId() != null && other.getServerId().equals(this.getServerId()) == false) return false; if (other.getSessionId() == null ^ this.getSessionId() == null) return false; if (other.getSessionId() != null && other.getSessionId().equals(this.getSessionId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getUserName() == null) ? 0 : getUserName().hashCode()); hashCode = prime * hashCode + ((getServerId() == null) ? 0 : getServerId().hashCode()); hashCode = prime * hashCode + ((getSessionId() == null) ? 0 : getSessionId().hashCode()); return hashCode; } @Override public UserDetails clone() { try { return (UserDetails) 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.transfer.model.transform.UserDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }