/* * Copyright 2010-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.chimesdkmessaging.model; import java.io.Serializable; /** * <p> * Summary of the details of a <code>Channel</code>. * </p> */ public class ChannelSummary implements Serializable { /** * <p> * The name of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * <b>Pattern: </b>[ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*<br/> */ private String name; /** * <p> * The ARN of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>5 - 1600<br/> * <b>Pattern: * </b>arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}<br/> */ private String channelArn; /** * <p> * The mode of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>UNRESTRICTED, RESTRICTED */ private String mode; /** * <p> * The privacy setting of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>PUBLIC, PRIVATE */ private String privacy; /** * <p> * The metadata of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 1024<br/> * <b>Pattern: </b>.*<br/> */ private String metadata; /** * <p> * The time at which the last persistent message visible to the caller in a * channel was sent. * </p> */ private java.util.Date lastMessageTimestamp; /** * <p> * The name of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * <b>Pattern: </b>[ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*<br/> * * @return <p> * The name of the channel. * </p> */ public String getName() { return name; } /** * <p> * The name of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * <b>Pattern: </b>[ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*<br/> * * @param name <p> * The name of the channel. * </p> */ public void setName(String name) { this.name = name; } /** * <p> * The name of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * <b>Pattern: </b>[ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*<br/> * * @param name <p> * The name of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public ChannelSummary withName(String name) { this.name = name; return this; } /** * <p> * The ARN of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>5 - 1600<br/> * <b>Pattern: * </b>arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}<br/> * * @return <p> * The ARN of the channel. * </p> */ public String getChannelArn() { return channelArn; } /** * <p> * The ARN of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>5 - 1600<br/> * <b>Pattern: * </b>arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}<br/> * * @param channelArn <p> * The ARN of the channel. * </p> */ public void setChannelArn(String channelArn) { this.channelArn = channelArn; } /** * <p> * The ARN of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>5 - 1600<br/> * <b>Pattern: * </b>arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}<br/> * * @param channelArn <p> * The ARN of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public ChannelSummary withChannelArn(String channelArn) { this.channelArn = channelArn; return this; } /** * <p> * The mode of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>UNRESTRICTED, RESTRICTED * * @return <p> * The mode of the channel. * </p> * @see ChannelMode */ public String getMode() { return mode; } /** * <p> * The mode of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>UNRESTRICTED, RESTRICTED * * @param mode <p> * The mode of the channel. * </p> * @see ChannelMode */ public void setMode(String mode) { this.mode = mode; } /** * <p> * The mode of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>UNRESTRICTED, RESTRICTED * * @param mode <p> * The mode of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. * @see ChannelMode */ public ChannelSummary withMode(String mode) { this.mode = mode; return this; } /** * <p> * The mode of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>UNRESTRICTED, RESTRICTED * * @param mode <p> * The mode of the channel. * </p> * @see ChannelMode */ public void setMode(ChannelMode mode) { this.mode = mode.toString(); } /** * <p> * The mode of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>UNRESTRICTED, RESTRICTED * * @param mode <p> * The mode of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. * @see ChannelMode */ public ChannelSummary withMode(ChannelMode mode) { this.mode = mode.toString(); return this; } /** * <p> * The privacy setting of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>PUBLIC, PRIVATE * * @return <p> * The privacy setting of the channel. * </p> * @see ChannelPrivacy */ public String getPrivacy() { return privacy; } /** * <p> * The privacy setting of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>PUBLIC, PRIVATE * * @param privacy <p> * The privacy setting of the channel. * </p> * @see ChannelPrivacy */ public void setPrivacy(String privacy) { this.privacy = privacy; } /** * <p> * The privacy setting of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>PUBLIC, PRIVATE * * @param privacy <p> * The privacy setting of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. * @see ChannelPrivacy */ public ChannelSummary withPrivacy(String privacy) { this.privacy = privacy; return this; } /** * <p> * The privacy setting of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>PUBLIC, PRIVATE * * @param privacy <p> * The privacy setting of the channel. * </p> * @see ChannelPrivacy */ public void setPrivacy(ChannelPrivacy privacy) { this.privacy = privacy.toString(); } /** * <p> * The privacy setting of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>PUBLIC, PRIVATE * * @param privacy <p> * The privacy setting of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. * @see ChannelPrivacy */ public ChannelSummary withPrivacy(ChannelPrivacy privacy) { this.privacy = privacy.toString(); return this; } /** * <p> * The metadata of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 1024<br/> * <b>Pattern: </b>.*<br/> * * @return <p> * The metadata of the channel. * </p> */ public String getMetadata() { return metadata; } /** * <p> * The metadata of the channel. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 1024<br/> * <b>Pattern: </b>.*<br/> * * @param metadata <p> * The metadata of the channel. * </p> */ public void setMetadata(String metadata) { this.metadata = metadata; } /** * <p> * The metadata of the channel. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 1024<br/> * <b>Pattern: </b>.*<br/> * * @param metadata <p> * The metadata of the channel. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public ChannelSummary withMetadata(String metadata) { this.metadata = metadata; return this; } /** * <p> * The time at which the last persistent message visible to the caller in a * channel was sent. * </p> * * @return <p> * The time at which the last persistent message visible to the * caller in a channel was sent. * </p> */ public java.util.Date getLastMessageTimestamp() { return lastMessageTimestamp; } /** * <p> * The time at which the last persistent message visible to the caller in a * channel was sent. * </p> * * @param lastMessageTimestamp <p> * The time at which the last persistent message visible to the * caller in a channel was sent. * </p> */ public void setLastMessageTimestamp(java.util.Date lastMessageTimestamp) { this.lastMessageTimestamp = lastMessageTimestamp; } /** * <p> * The time at which the last persistent message visible to the caller in a * channel was sent. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param lastMessageTimestamp <p> * The time at which the last persistent message visible to the * caller in a channel was sent. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public ChannelSummary withLastMessageTimestamp(java.util.Date lastMessageTimestamp) { this.lastMessageTimestamp = lastMessageTimestamp; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @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: " + getName() + ","); if (getChannelArn() != null) sb.append("ChannelArn: " + getChannelArn() + ","); if (getMode() != null) sb.append("Mode: " + getMode() + ","); if (getPrivacy() != null) sb.append("Privacy: " + getPrivacy() + ","); if (getMetadata() != null) sb.append("Metadata: " + getMetadata() + ","); if (getLastMessageTimestamp() != null) sb.append("LastMessageTimestamp: " + getLastMessageTimestamp()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getChannelArn() == null) ? 0 : getChannelArn().hashCode()); hashCode = prime * hashCode + ((getMode() == null) ? 0 : getMode().hashCode()); hashCode = prime * hashCode + ((getPrivacy() == null) ? 0 : getPrivacy().hashCode()); hashCode = prime * hashCode + ((getMetadata() == null) ? 0 : getMetadata().hashCode()); hashCode = prime * hashCode + ((getLastMessageTimestamp() == null) ? 0 : getLastMessageTimestamp().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ChannelSummary == false) return false; ChannelSummary other = (ChannelSummary) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getChannelArn() == null ^ this.getChannelArn() == null) return false; if (other.getChannelArn() != null && other.getChannelArn().equals(this.getChannelArn()) == false) return false; if (other.getMode() == null ^ this.getMode() == null) return false; if (other.getMode() != null && other.getMode().equals(this.getMode()) == false) return false; if (other.getPrivacy() == null ^ this.getPrivacy() == null) return false; if (other.getPrivacy() != null && other.getPrivacy().equals(this.getPrivacy()) == false) return false; if (other.getMetadata() == null ^ this.getMetadata() == null) return false; if (other.getMetadata() != null && other.getMetadata().equals(this.getMetadata()) == false) return false; if (other.getLastMessageTimestamp() == null ^ this.getLastMessageTimestamp() == null) return false; if (other.getLastMessageTimestamp() != null && other.getLastMessageTimestamp().equals(this.getLastMessageTimestamp()) == false) return false; return true; } }