com.amazonaws.services.workmail.model.Resource Maven / Gradle / Ivy
Show all versions of aws-java-sdk-workmail 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.workmail.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The representation of a resource.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Resource implements Serializable, Cloneable, StructuredPojo {
/**
*
* The identifier of the resource.
*
*/
private String id;
/**
*
* The email of the resource.
*
*/
private String email;
/**
*
* The name of the resource.
*
*/
private String name;
/**
*
* The type of the resource: equipment or room.
*
*/
private String type;
/**
*
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
*
*/
private String state;
/**
*
* The date indicating when the resource was enabled for WorkMail use.
*
*/
private java.util.Date enabledDate;
/**
*
* The date indicating when the resource was disabled from WorkMail use.
*
*/
private java.util.Date disabledDate;
/**
*
* Resource description.
*
*/
private String description;
/**
*
* The identifier of the resource.
*
*
* @param id
* The identifier of the resource.
*/
public void setId(String id) {
this.id = id;
}
/**
*
* The identifier of the resource.
*
*
* @return The identifier of the resource.
*/
public String getId() {
return this.id;
}
/**
*
* The identifier of the resource.
*
*
* @param id
* The identifier of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Resource withId(String id) {
setId(id);
return this;
}
/**
*
* The email of the resource.
*
*
* @param email
* The email of the resource.
*/
public void setEmail(String email) {
this.email = email;
}
/**
*
* The email of the resource.
*
*
* @return The email of the resource.
*/
public String getEmail() {
return this.email;
}
/**
*
* The email of the resource.
*
*
* @param email
* The email of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Resource withEmail(String email) {
setEmail(email);
return this;
}
/**
*
* The name of the resource.
*
*
* @param name
* The name of the resource.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the resource.
*
*
* @return The name of the resource.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the resource.
*
*
* @param name
* The name of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Resource withName(String name) {
setName(name);
return this;
}
/**
*
* The type of the resource: equipment or room.
*
*
* @param type
* The type of the resource: equipment or room.
* @see ResourceType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of the resource: equipment or room.
*
*
* @return The type of the resource: equipment or room.
* @see ResourceType
*/
public String getType() {
return this.type;
}
/**
*
* The type of the resource: equipment or room.
*
*
* @param type
* The type of the resource: equipment or room.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ResourceType
*/
public Resource withType(String type) {
setType(type);
return this;
}
/**
*
* The type of the resource: equipment or room.
*
*
* @param type
* The type of the resource: equipment or room.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ResourceType
*/
public Resource withType(ResourceType type) {
this.type = type.toString();
return this;
}
/**
*
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
*
*
* @param state
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
* @see EntityState
*/
public void setState(String state) {
this.state = state;
}
/**
*
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
*
*
* @return The state of the resource, which can be ENABLED, DISABLED, or DELETED.
* @see EntityState
*/
public String getState() {
return this.state;
}
/**
*
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
*
*
* @param state
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EntityState
*/
public Resource withState(String state) {
setState(state);
return this;
}
/**
*
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
*
*
* @param state
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EntityState
*/
public Resource withState(EntityState state) {
this.state = state.toString();
return this;
}
/**
*
* The date indicating when the resource was enabled for WorkMail use.
*
*
* @param enabledDate
* The date indicating when the resource was enabled for WorkMail use.
*/
public void setEnabledDate(java.util.Date enabledDate) {
this.enabledDate = enabledDate;
}
/**
*
* The date indicating when the resource was enabled for WorkMail use.
*
*
* @return The date indicating when the resource was enabled for WorkMail use.
*/
public java.util.Date getEnabledDate() {
return this.enabledDate;
}
/**
*
* The date indicating when the resource was enabled for WorkMail use.
*
*
* @param enabledDate
* The date indicating when the resource was enabled for WorkMail use.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Resource withEnabledDate(java.util.Date enabledDate) {
setEnabledDate(enabledDate);
return this;
}
/**
*
* The date indicating when the resource was disabled from WorkMail use.
*
*
* @param disabledDate
* The date indicating when the resource was disabled from WorkMail use.
*/
public void setDisabledDate(java.util.Date disabledDate) {
this.disabledDate = disabledDate;
}
/**
*
* The date indicating when the resource was disabled from WorkMail use.
*
*
* @return The date indicating when the resource was disabled from WorkMail use.
*/
public java.util.Date getDisabledDate() {
return this.disabledDate;
}
/**
*
* The date indicating when the resource was disabled from WorkMail use.
*
*
* @param disabledDate
* The date indicating when the resource was disabled from WorkMail use.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Resource withDisabledDate(java.util.Date disabledDate) {
setDisabledDate(disabledDate);
return this;
}
/**
*
* Resource description.
*
*
* @param description
* Resource description.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* Resource description.
*
*
* @return Resource description.
*/
public String getDescription() {
return this.description;
}
/**
*
* Resource description.
*
*
* @param description
* Resource description.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Resource withDescription(String description) {
setDescription(description);
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 (getId() != null)
sb.append("Id: ").append(getId()).append(",");
if (getEmail() != null)
sb.append("Email: ").append(getEmail()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getState() != null)
sb.append("State: ").append(getState()).append(",");
if (getEnabledDate() != null)
sb.append("EnabledDate: ").append(getEnabledDate()).append(",");
if (getDisabledDate() != null)
sb.append("DisabledDate: ").append(getDisabledDate()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Resource == false)
return false;
Resource other = (Resource) obj;
if (other.getId() == null ^ this.getId() == null)
return false;
if (other.getId() != null && other.getId().equals(this.getId()) == false)
return false;
if (other.getEmail() == null ^ this.getEmail() == null)
return false;
if (other.getEmail() != null && other.getEmail().equals(this.getEmail()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == 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.getState() == null ^ this.getState() == null)
return false;
if (other.getState() != null && other.getState().equals(this.getState()) == false)
return false;
if (other.getEnabledDate() == null ^ this.getEnabledDate() == null)
return false;
if (other.getEnabledDate() != null && other.getEnabledDate().equals(this.getEnabledDate()) == false)
return false;
if (other.getDisabledDate() == null ^ this.getDisabledDate() == null)
return false;
if (other.getDisabledDate() != null && other.getDisabledDate().equals(this.getDisabledDate()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode());
hashCode = prime * hashCode + ((getEmail() == null) ? 0 : getEmail().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getEnabledDate() == null) ? 0 : getEnabledDate().hashCode());
hashCode = prime * hashCode + ((getDisabledDate() == null) ? 0 : getDisabledDate().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
return hashCode;
}
@Override
public Resource clone() {
try {
return (Resource) 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.workmail.model.transform.ResourceMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}