com.amazonaws.services.iotfleethub.model.ApplicationSummary Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iotfleethub 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.iotfleethub.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A summary of information about a Fleet Hub for IoT Device Management web application.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ApplicationSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The unique Id of the web application.
*
*/
private String applicationId;
/**
*
* The name of the web application.
*
*/
private String applicationName;
/**
*
* An optional description of the web application.
*
*/
private String applicationDescription;
/**
*
* The URL of the web application.
*
*/
private String applicationUrl;
/**
*
* The date (in Unix epoch time) when the web application was created.
*
*/
private Long applicationCreationDate;
/**
*
* The date (in Unix epoch time) when the web application was last updated.
*
*/
private Long applicationLastUpdateDate;
/**
*
* The current state of the web application.
*
*/
private String applicationState;
/**
*
* The unique Id of the web application.
*
*
* @param applicationId
* The unique Id of the web application.
*/
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
/**
*
* The unique Id of the web application.
*
*
* @return The unique Id of the web application.
*/
public String getApplicationId() {
return this.applicationId;
}
/**
*
* The unique Id of the web application.
*
*
* @param applicationId
* The unique Id of the web application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationSummary withApplicationId(String applicationId) {
setApplicationId(applicationId);
return this;
}
/**
*
* The name of the web application.
*
*
* @param applicationName
* The name of the web application.
*/
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
/**
*
* The name of the web application.
*
*
* @return The name of the web application.
*/
public String getApplicationName() {
return this.applicationName;
}
/**
*
* The name of the web application.
*
*
* @param applicationName
* The name of the web application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationSummary withApplicationName(String applicationName) {
setApplicationName(applicationName);
return this;
}
/**
*
* An optional description of the web application.
*
*
* @param applicationDescription
* An optional description of the web application.
*/
public void setApplicationDescription(String applicationDescription) {
this.applicationDescription = applicationDescription;
}
/**
*
* An optional description of the web application.
*
*
* @return An optional description of the web application.
*/
public String getApplicationDescription() {
return this.applicationDescription;
}
/**
*
* An optional description of the web application.
*
*
* @param applicationDescription
* An optional description of the web application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationSummary withApplicationDescription(String applicationDescription) {
setApplicationDescription(applicationDescription);
return this;
}
/**
*
* The URL of the web application.
*
*
* @param applicationUrl
* The URL of the web application.
*/
public void setApplicationUrl(String applicationUrl) {
this.applicationUrl = applicationUrl;
}
/**
*
* The URL of the web application.
*
*
* @return The URL of the web application.
*/
public String getApplicationUrl() {
return this.applicationUrl;
}
/**
*
* The URL of the web application.
*
*
* @param applicationUrl
* The URL of the web application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationSummary withApplicationUrl(String applicationUrl) {
setApplicationUrl(applicationUrl);
return this;
}
/**
*
* The date (in Unix epoch time) when the web application was created.
*
*
* @param applicationCreationDate
* The date (in Unix epoch time) when the web application was created.
*/
public void setApplicationCreationDate(Long applicationCreationDate) {
this.applicationCreationDate = applicationCreationDate;
}
/**
*
* The date (in Unix epoch time) when the web application was created.
*
*
* @return The date (in Unix epoch time) when the web application was created.
*/
public Long getApplicationCreationDate() {
return this.applicationCreationDate;
}
/**
*
* The date (in Unix epoch time) when the web application was created.
*
*
* @param applicationCreationDate
* The date (in Unix epoch time) when the web application was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationSummary withApplicationCreationDate(Long applicationCreationDate) {
setApplicationCreationDate(applicationCreationDate);
return this;
}
/**
*
* The date (in Unix epoch time) when the web application was last updated.
*
*
* @param applicationLastUpdateDate
* The date (in Unix epoch time) when the web application was last updated.
*/
public void setApplicationLastUpdateDate(Long applicationLastUpdateDate) {
this.applicationLastUpdateDate = applicationLastUpdateDate;
}
/**
*
* The date (in Unix epoch time) when the web application was last updated.
*
*
* @return The date (in Unix epoch time) when the web application was last updated.
*/
public Long getApplicationLastUpdateDate() {
return this.applicationLastUpdateDate;
}
/**
*
* The date (in Unix epoch time) when the web application was last updated.
*
*
* @param applicationLastUpdateDate
* The date (in Unix epoch time) when the web application was last updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationSummary withApplicationLastUpdateDate(Long applicationLastUpdateDate) {
setApplicationLastUpdateDate(applicationLastUpdateDate);
return this;
}
/**
*
* The current state of the web application.
*
*
* @param applicationState
* The current state of the web application.
* @see ApplicationState
*/
public void setApplicationState(String applicationState) {
this.applicationState = applicationState;
}
/**
*
* The current state of the web application.
*
*
* @return The current state of the web application.
* @see ApplicationState
*/
public String getApplicationState() {
return this.applicationState;
}
/**
*
* The current state of the web application.
*
*
* @param applicationState
* The current state of the web application.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ApplicationState
*/
public ApplicationSummary withApplicationState(String applicationState) {
setApplicationState(applicationState);
return this;
}
/**
*
* The current state of the web application.
*
*
* @param applicationState
* The current state of the web application.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ApplicationState
*/
public ApplicationSummary withApplicationState(ApplicationState applicationState) {
this.applicationState = applicationState.toString();
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 (getApplicationId() != null)
sb.append("ApplicationId: ").append(getApplicationId()).append(",");
if (getApplicationName() != null)
sb.append("ApplicationName: ").append(getApplicationName()).append(",");
if (getApplicationDescription() != null)
sb.append("ApplicationDescription: ").append(getApplicationDescription()).append(",");
if (getApplicationUrl() != null)
sb.append("ApplicationUrl: ").append(getApplicationUrl()).append(",");
if (getApplicationCreationDate() != null)
sb.append("ApplicationCreationDate: ").append(getApplicationCreationDate()).append(",");
if (getApplicationLastUpdateDate() != null)
sb.append("ApplicationLastUpdateDate: ").append(getApplicationLastUpdateDate()).append(",");
if (getApplicationState() != null)
sb.append("ApplicationState: ").append(getApplicationState());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ApplicationSummary == false)
return false;
ApplicationSummary other = (ApplicationSummary) obj;
if (other.getApplicationId() == null ^ this.getApplicationId() == null)
return false;
if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false)
return false;
if (other.getApplicationName() == null ^ this.getApplicationName() == null)
return false;
if (other.getApplicationName() != null && other.getApplicationName().equals(this.getApplicationName()) == false)
return false;
if (other.getApplicationDescription() == null ^ this.getApplicationDescription() == null)
return false;
if (other.getApplicationDescription() != null && other.getApplicationDescription().equals(this.getApplicationDescription()) == false)
return false;
if (other.getApplicationUrl() == null ^ this.getApplicationUrl() == null)
return false;
if (other.getApplicationUrl() != null && other.getApplicationUrl().equals(this.getApplicationUrl()) == false)
return false;
if (other.getApplicationCreationDate() == null ^ this.getApplicationCreationDate() == null)
return false;
if (other.getApplicationCreationDate() != null && other.getApplicationCreationDate().equals(this.getApplicationCreationDate()) == false)
return false;
if (other.getApplicationLastUpdateDate() == null ^ this.getApplicationLastUpdateDate() == null)
return false;
if (other.getApplicationLastUpdateDate() != null && other.getApplicationLastUpdateDate().equals(this.getApplicationLastUpdateDate()) == false)
return false;
if (other.getApplicationState() == null ^ this.getApplicationState() == null)
return false;
if (other.getApplicationState() != null && other.getApplicationState().equals(this.getApplicationState()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode());
hashCode = prime * hashCode + ((getApplicationName() == null) ? 0 : getApplicationName().hashCode());
hashCode = prime * hashCode + ((getApplicationDescription() == null) ? 0 : getApplicationDescription().hashCode());
hashCode = prime * hashCode + ((getApplicationUrl() == null) ? 0 : getApplicationUrl().hashCode());
hashCode = prime * hashCode + ((getApplicationCreationDate() == null) ? 0 : getApplicationCreationDate().hashCode());
hashCode = prime * hashCode + ((getApplicationLastUpdateDate() == null) ? 0 : getApplicationLastUpdateDate().hashCode());
hashCode = prime * hashCode + ((getApplicationState() == null) ? 0 : getApplicationState().hashCode());
return hashCode;
}
@Override
public ApplicationSummary clone() {
try {
return (ApplicationSummary) 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.iotfleethub.model.transform.ApplicationSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}