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

com.amazonaws.services.workmail.model.Group Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon WorkMail module holds the client classes that are used for communicating with Amazon WorkMail Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2016-2021 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 an Amazon WorkMail group. *

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

* The identifier of the group. *

*/ private String id; /** *

* The email of the group. *

*/ private String email; /** *

* The name of the group. *

*/ private String name; /** *

* The state of the group, which can be ENABLED, DISABLED, or DELETED. *

*/ private String state; /** *

* The date indicating when the group was enabled for Amazon WorkMail use. *

*/ private java.util.Date enabledDate; /** *

* The date indicating when the group was disabled from Amazon WorkMail use. *

*/ private java.util.Date disabledDate; /** *

* The identifier of the group. *

* * @param id * The identifier of the group. */ public void setId(String id) { this.id = id; } /** *

* The identifier of the group. *

* * @return The identifier of the group. */ public String getId() { return this.id; } /** *

* The identifier of the group. *

* * @param id * The identifier of the group. * @return Returns a reference to this object so that method calls can be chained together. */ public Group withId(String id) { setId(id); return this; } /** *

* The email of the group. *

* * @param email * The email of the group. */ public void setEmail(String email) { this.email = email; } /** *

* The email of the group. *

* * @return The email of the group. */ public String getEmail() { return this.email; } /** *

* The email of the group. *

* * @param email * The email of the group. * @return Returns a reference to this object so that method calls can be chained together. */ public Group withEmail(String email) { setEmail(email); return this; } /** *

* The name of the group. *

* * @param name * The name of the group. */ public void setName(String name) { this.name = name; } /** *

* The name of the group. *

* * @return The name of the group. */ public String getName() { return this.name; } /** *

* The name of the group. *

* * @param name * The name of the group. * @return Returns a reference to this object so that method calls can be chained together. */ public Group withName(String name) { setName(name); return this; } /** *

* The state of the group, which can be ENABLED, DISABLED, or DELETED. *

* * @param state * The state of the group, which can be ENABLED, DISABLED, or DELETED. * @see EntityState */ public void setState(String state) { this.state = state; } /** *

* The state of the group, which can be ENABLED, DISABLED, or DELETED. *

* * @return The state of the group, which can be ENABLED, DISABLED, or DELETED. * @see EntityState */ public String getState() { return this.state; } /** *

* The state of the group, which can be ENABLED, DISABLED, or DELETED. *

* * @param state * The state of the group, 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 Group withState(String state) { setState(state); return this; } /** *

* The state of the group, which can be ENABLED, DISABLED, or DELETED. *

* * @param state * The state of the group, 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 Group withState(EntityState state) { this.state = state.toString(); return this; } /** *

* The date indicating when the group was enabled for Amazon WorkMail use. *

* * @param enabledDate * The date indicating when the group was enabled for Amazon WorkMail use. */ public void setEnabledDate(java.util.Date enabledDate) { this.enabledDate = enabledDate; } /** *

* The date indicating when the group was enabled for Amazon WorkMail use. *

* * @return The date indicating when the group was enabled for Amazon WorkMail use. */ public java.util.Date getEnabledDate() { return this.enabledDate; } /** *

* The date indicating when the group was enabled for Amazon WorkMail use. *

* * @param enabledDate * The date indicating when the group was enabled for Amazon WorkMail use. * @return Returns a reference to this object so that method calls can be chained together. */ public Group withEnabledDate(java.util.Date enabledDate) { setEnabledDate(enabledDate); return this; } /** *

* The date indicating when the group was disabled from Amazon WorkMail use. *

* * @param disabledDate * The date indicating when the group was disabled from Amazon WorkMail use. */ public void setDisabledDate(java.util.Date disabledDate) { this.disabledDate = disabledDate; } /** *

* The date indicating when the group was disabled from Amazon WorkMail use. *

* * @return The date indicating when the group was disabled from Amazon WorkMail use. */ public java.util.Date getDisabledDate() { return this.disabledDate; } /** *

* The date indicating when the group was disabled from Amazon WorkMail use. *

* * @param disabledDate * The date indicating when the group was disabled from Amazon WorkMail use. * @return Returns a reference to this object so that method calls can be chained together. */ public Group withDisabledDate(java.util.Date disabledDate) { setDisabledDate(disabledDate); 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 (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()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Group == false) return false; Group other = (Group) 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.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; 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 + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getEnabledDate() == null) ? 0 : getEnabledDate().hashCode()); hashCode = prime * hashCode + ((getDisabledDate() == null) ? 0 : getDisabledDate().hashCode()); return hashCode; } @Override public Group clone() { try { return (Group) 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.GroupMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy