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

com.amazonaws.services.apigateway.model.ApiKey Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.apigateway.model;

import java.io.Serializable;

/**
 * 

* A resource that can be distributed to callers for executing Method * resources that require an API key. API keys can be mapped to any Stage * on any RestApi, which indicates that the callers with the API key can * make requests to that stage. *

*/ public class ApiKey implements Serializable, Cloneable { /** *

* The identifier of the API Key. *

*/ private String id; /** *

* The name of the API Key. *

*/ private String name; /** *

* The description of the API Key. *

*/ private String description; /** *

* Specifies whether the API Key can be used by callers. *

*/ private Boolean enabled; /** *

* A list of Stage resources that are associated with the * ApiKey resource. *

*/ private java.util.List stageKeys; /** *

* The date when the API Key was created, in ISO 8601 format. *

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

* When the API Key was last updated, in ISO 8601 format. *

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

* The identifier of the API Key. *

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

* The identifier of the API Key. *

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

* The identifier of the API Key. *

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

* The name of the API Key. *

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

* The name of the API Key. *

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

* The name of the API Key. *

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

* The description of the API Key. *

* * @param description * The description of the API Key. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the API Key. *

* * @return The description of the API Key. */ public String getDescription() { return this.description; } /** *

* The description of the API Key. *

* * @param description * The description of the API Key. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApiKey withDescription(String description) { setDescription(description); return this; } /** *

* Specifies whether the API Key can be used by callers. *

* * @param enabled * Specifies whether the API Key can be used by callers. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** *

* Specifies whether the API Key can be used by callers. *

* * @return Specifies whether the API Key can be used by callers. */ public Boolean getEnabled() { return this.enabled; } /** *

* Specifies whether the API Key can be used by callers. *

* * @param enabled * Specifies whether the API Key can be used by callers. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApiKey withEnabled(Boolean enabled) { setEnabled(enabled); return this; } /** *

* Specifies whether the API Key can be used by callers. *

* * @return Specifies whether the API Key can be used by callers. */ public Boolean isEnabled() { return this.enabled; } /** *

* A list of Stage resources that are associated with the * ApiKey resource. *

* * @return A list of Stage resources that are associated with the * ApiKey resource. */ public java.util.List getStageKeys() { return stageKeys; } /** *

* A list of Stage resources that are associated with the * ApiKey resource. *

* * @param stageKeys * A list of Stage resources that are associated with the * ApiKey resource. */ public void setStageKeys(java.util.Collection stageKeys) { if (stageKeys == null) { this.stageKeys = null; return; } this.stageKeys = new java.util.ArrayList(stageKeys); } /** *

* A list of Stage resources that are associated with the * ApiKey resource. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setStageKeys(java.util.Collection)} or * {@link #withStageKeys(java.util.Collection)} if you want to override the * existing values. *

* * @param stageKeys * A list of Stage resources that are associated with the * ApiKey resource. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApiKey withStageKeys(String... stageKeys) { if (this.stageKeys == null) { setStageKeys(new java.util.ArrayList(stageKeys.length)); } for (String ele : stageKeys) { this.stageKeys.add(ele); } return this; } /** *

* A list of Stage resources that are associated with the * ApiKey resource. *

* * @param stageKeys * A list of Stage resources that are associated with the * ApiKey resource. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApiKey withStageKeys(java.util.Collection stageKeys) { setStageKeys(stageKeys); return this; } /** *

* The date when the API Key was created, in ISO 8601 format. *

* * @param createdDate * The date when the API Key was created, in ISO 8601 format. */ public void setCreatedDate(java.util.Date createdDate) { this.createdDate = createdDate; } /** *

* The date when the API Key was created, in ISO 8601 format. *

* * @return The date when the API Key was created, in ISO 8601 format. */ public java.util.Date getCreatedDate() { return this.createdDate; } /** *

* The date when the API Key was created, in ISO 8601 format. *

* * @param createdDate * The date when the API Key was created, in ISO 8601 format. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApiKey withCreatedDate(java.util.Date createdDate) { setCreatedDate(createdDate); return this; } /** *

* When the API Key was last updated, in ISO 8601 format. *

* * @param lastUpdatedDate * When the API Key was last updated, in ISO 8601 format. */ public void setLastUpdatedDate(java.util.Date lastUpdatedDate) { this.lastUpdatedDate = lastUpdatedDate; } /** *

* When the API Key was last updated, in ISO 8601 format. *

* * @return When the API Key was last updated, in ISO 8601 format. */ public java.util.Date getLastUpdatedDate() { return this.lastUpdatedDate; } /** *

* When the API Key was last updated, in ISO 8601 format. *

* * @param lastUpdatedDate * When the API Key was last updated, in ISO 8601 format. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApiKey withLastUpdatedDate(java.util.Date lastUpdatedDate) { setLastUpdatedDate(lastUpdatedDate); 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 (getId() != null) sb.append("Id: " + getId() + ","); if (getName() != null) sb.append("Name: " + getName() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getEnabled() != null) sb.append("Enabled: " + getEnabled() + ","); if (getStageKeys() != null) sb.append("StageKeys: " + getStageKeys() + ","); if (getCreatedDate() != null) sb.append("CreatedDate: " + getCreatedDate() + ","); if (getLastUpdatedDate() != null) sb.append("LastUpdatedDate: " + getLastUpdatedDate()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ApiKey == false) return false; ApiKey other = (ApiKey) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == 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.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getStageKeys() == null ^ this.getStageKeys() == null) return false; if (other.getStageKeys() != null && other.getStageKeys().equals(this.getStageKeys()) == false) return false; if (other.getCreatedDate() == null ^ this.getCreatedDate() == null) return false; if (other.getCreatedDate() != null && other.getCreatedDate().equals(this.getCreatedDate()) == false) return false; if (other.getLastUpdatedDate() == null ^ this.getLastUpdatedDate() == null) return false; if (other.getLastUpdatedDate() != null && other.getLastUpdatedDate().equals(this.getLastUpdatedDate()) == 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 + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getStageKeys() == null) ? 0 : getStageKeys().hashCode()); hashCode = prime * hashCode + ((getCreatedDate() == null) ? 0 : getCreatedDate().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedDate() == null) ? 0 : getLastUpdatedDate() .hashCode()); return hashCode; } @Override public ApiKey clone() { try { return (ApiKey) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy