com.amazonaws.services.chime.model.ChannelMessageSummary Maven / Gradle / Ivy
Show all versions of aws-java-sdk-chime Show documentation
/*
* 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.chime.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Summary of the messages in a Channel
.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ChannelMessageSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The ID of the message.
*
*/
private String messageId;
/**
*
* The content of the message.
*
*/
private String content;
/**
*
* The metadata of the message.
*
*/
private String metadata;
/**
*
* The type of message.
*
*/
private String type;
/**
*
* The time at which the message summary was created.
*
*/
private java.util.Date createdTimestamp;
/**
*
* The time at which a message was last updated.
*
*/
private java.util.Date lastUpdatedTimestamp;
/**
*
* The time at which a message was last edited.
*
*/
private java.util.Date lastEditedTimestamp;
/**
*
* The message sender.
*
*/
private Identity sender;
/**
*
* Indicates whether a message was redacted.
*
*/
private Boolean redacted;
/**
*
* The ID of the message.
*
*
* @param messageId
* The ID of the message.
*/
public void setMessageId(String messageId) {
this.messageId = messageId;
}
/**
*
* The ID of the message.
*
*
* @return The ID of the message.
*/
public String getMessageId() {
return this.messageId;
}
/**
*
* The ID of the message.
*
*
* @param messageId
* The ID of the message.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withMessageId(String messageId) {
setMessageId(messageId);
return this;
}
/**
*
* The content of the message.
*
*
* @param content
* The content of the message.
*/
public void setContent(String content) {
this.content = content;
}
/**
*
* The content of the message.
*
*
* @return The content of the message.
*/
public String getContent() {
return this.content;
}
/**
*
* The content of the message.
*
*
* @param content
* The content of the message.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withContent(String content) {
setContent(content);
return this;
}
/**
*
* The metadata of the message.
*
*
* @param metadata
* The metadata of the message.
*/
public void setMetadata(String metadata) {
this.metadata = metadata;
}
/**
*
* The metadata of the message.
*
*
* @return The metadata of the message.
*/
public String getMetadata() {
return this.metadata;
}
/**
*
* The metadata of the message.
*
*
* @param metadata
* The metadata of the message.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withMetadata(String metadata) {
setMetadata(metadata);
return this;
}
/**
*
* The type of message.
*
*
* @param type
* The type of message.
* @see ChannelMessageType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of message.
*
*
* @return The type of message.
* @see ChannelMessageType
*/
public String getType() {
return this.type;
}
/**
*
* The type of message.
*
*
* @param type
* The type of message.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ChannelMessageType
*/
public ChannelMessageSummary withType(String type) {
setType(type);
return this;
}
/**
*
* The type of message.
*
*
* @param type
* The type of message.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ChannelMessageType
*/
public ChannelMessageSummary withType(ChannelMessageType type) {
this.type = type.toString();
return this;
}
/**
*
* The time at which the message summary was created.
*
*
* @param createdTimestamp
* The time at which the message summary was created.
*/
public void setCreatedTimestamp(java.util.Date createdTimestamp) {
this.createdTimestamp = createdTimestamp;
}
/**
*
* The time at which the message summary was created.
*
*
* @return The time at which the message summary was created.
*/
public java.util.Date getCreatedTimestamp() {
return this.createdTimestamp;
}
/**
*
* The time at which the message summary was created.
*
*
* @param createdTimestamp
* The time at which the message summary was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withCreatedTimestamp(java.util.Date createdTimestamp) {
setCreatedTimestamp(createdTimestamp);
return this;
}
/**
*
* The time at which a message was last updated.
*
*
* @param lastUpdatedTimestamp
* The time at which a message was last updated.
*/
public void setLastUpdatedTimestamp(java.util.Date lastUpdatedTimestamp) {
this.lastUpdatedTimestamp = lastUpdatedTimestamp;
}
/**
*
* The time at which a message was last updated.
*
*
* @return The time at which a message was last updated.
*/
public java.util.Date getLastUpdatedTimestamp() {
return this.lastUpdatedTimestamp;
}
/**
*
* The time at which a message was last updated.
*
*
* @param lastUpdatedTimestamp
* The time at which a message was last updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withLastUpdatedTimestamp(java.util.Date lastUpdatedTimestamp) {
setLastUpdatedTimestamp(lastUpdatedTimestamp);
return this;
}
/**
*
* The time at which a message was last edited.
*
*
* @param lastEditedTimestamp
* The time at which a message was last edited.
*/
public void setLastEditedTimestamp(java.util.Date lastEditedTimestamp) {
this.lastEditedTimestamp = lastEditedTimestamp;
}
/**
*
* The time at which a message was last edited.
*
*
* @return The time at which a message was last edited.
*/
public java.util.Date getLastEditedTimestamp() {
return this.lastEditedTimestamp;
}
/**
*
* The time at which a message was last edited.
*
*
* @param lastEditedTimestamp
* The time at which a message was last edited.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withLastEditedTimestamp(java.util.Date lastEditedTimestamp) {
setLastEditedTimestamp(lastEditedTimestamp);
return this;
}
/**
*
* The message sender.
*
*
* @param sender
* The message sender.
*/
public void setSender(Identity sender) {
this.sender = sender;
}
/**
*
* The message sender.
*
*
* @return The message sender.
*/
public Identity getSender() {
return this.sender;
}
/**
*
* The message sender.
*
*
* @param sender
* The message sender.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withSender(Identity sender) {
setSender(sender);
return this;
}
/**
*
* Indicates whether a message was redacted.
*
*
* @param redacted
* Indicates whether a message was redacted.
*/
public void setRedacted(Boolean redacted) {
this.redacted = redacted;
}
/**
*
* Indicates whether a message was redacted.
*
*
* @return Indicates whether a message was redacted.
*/
public Boolean getRedacted() {
return this.redacted;
}
/**
*
* Indicates whether a message was redacted.
*
*
* @param redacted
* Indicates whether a message was redacted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ChannelMessageSummary withRedacted(Boolean redacted) {
setRedacted(redacted);
return this;
}
/**
*
* Indicates whether a message was redacted.
*
*
* @return Indicates whether a message was redacted.
*/
public Boolean isRedacted() {
return this.redacted;
}
/**
* 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 (getMessageId() != null)
sb.append("MessageId: ").append(getMessageId()).append(",");
if (getContent() != null)
sb.append("Content: ").append("***Sensitive Data Redacted***").append(",");
if (getMetadata() != null)
sb.append("Metadata: ").append("***Sensitive Data Redacted***").append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getCreatedTimestamp() != null)
sb.append("CreatedTimestamp: ").append(getCreatedTimestamp()).append(",");
if (getLastUpdatedTimestamp() != null)
sb.append("LastUpdatedTimestamp: ").append(getLastUpdatedTimestamp()).append(",");
if (getLastEditedTimestamp() != null)
sb.append("LastEditedTimestamp: ").append(getLastEditedTimestamp()).append(",");
if (getSender() != null)
sb.append("Sender: ").append(getSender()).append(",");
if (getRedacted() != null)
sb.append("Redacted: ").append(getRedacted());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ChannelMessageSummary == false)
return false;
ChannelMessageSummary other = (ChannelMessageSummary) obj;
if (other.getMessageId() == null ^ this.getMessageId() == null)
return false;
if (other.getMessageId() != null && other.getMessageId().equals(this.getMessageId()) == false)
return false;
if (other.getContent() == null ^ this.getContent() == null)
return false;
if (other.getContent() != null && other.getContent().equals(this.getContent()) == 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.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
if (other.getCreatedTimestamp() == null ^ this.getCreatedTimestamp() == null)
return false;
if (other.getCreatedTimestamp() != null && other.getCreatedTimestamp().equals(this.getCreatedTimestamp()) == false)
return false;
if (other.getLastUpdatedTimestamp() == null ^ this.getLastUpdatedTimestamp() == null)
return false;
if (other.getLastUpdatedTimestamp() != null && other.getLastUpdatedTimestamp().equals(this.getLastUpdatedTimestamp()) == false)
return false;
if (other.getLastEditedTimestamp() == null ^ this.getLastEditedTimestamp() == null)
return false;
if (other.getLastEditedTimestamp() != null && other.getLastEditedTimestamp().equals(this.getLastEditedTimestamp()) == false)
return false;
if (other.getSender() == null ^ this.getSender() == null)
return false;
if (other.getSender() != null && other.getSender().equals(this.getSender()) == false)
return false;
if (other.getRedacted() == null ^ this.getRedacted() == null)
return false;
if (other.getRedacted() != null && other.getRedacted().equals(this.getRedacted()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMessageId() == null) ? 0 : getMessageId().hashCode());
hashCode = prime * hashCode + ((getContent() == null) ? 0 : getContent().hashCode());
hashCode = prime * hashCode + ((getMetadata() == null) ? 0 : getMetadata().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getCreatedTimestamp() == null) ? 0 : getCreatedTimestamp().hashCode());
hashCode = prime * hashCode + ((getLastUpdatedTimestamp() == null) ? 0 : getLastUpdatedTimestamp().hashCode());
hashCode = prime * hashCode + ((getLastEditedTimestamp() == null) ? 0 : getLastEditedTimestamp().hashCode());
hashCode = prime * hashCode + ((getSender() == null) ? 0 : getSender().hashCode());
hashCode = prime * hashCode + ((getRedacted() == null) ? 0 : getRedacted().hashCode());
return hashCode;
}
@Override
public ChannelMessageSummary clone() {
try {
return (ChannelMessageSummary) 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.chime.model.transform.ChannelMessageSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}