com.amazonaws.services.location.model.BatchUpdateDevicePositionRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-location 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.location.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class BatchUpdateDevicePositionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name of the tracker resource to update.
*
*/
private String trackerName;
/**
*
* Contains the position update details for each device, up to 10 devices.
*
*/
private java.util.List updates;
/**
*
* The name of the tracker resource to update.
*
*
* @param trackerName
* The name of the tracker resource to update.
*/
public void setTrackerName(String trackerName) {
this.trackerName = trackerName;
}
/**
*
* The name of the tracker resource to update.
*
*
* @return The name of the tracker resource to update.
*/
public String getTrackerName() {
return this.trackerName;
}
/**
*
* The name of the tracker resource to update.
*
*
* @param trackerName
* The name of the tracker resource to update.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchUpdateDevicePositionRequest withTrackerName(String trackerName) {
setTrackerName(trackerName);
return this;
}
/**
*
* Contains the position update details for each device, up to 10 devices.
*
*
* @return Contains the position update details for each device, up to 10 devices.
*/
public java.util.List getUpdates() {
return updates;
}
/**
*
* Contains the position update details for each device, up to 10 devices.
*
*
* @param updates
* Contains the position update details for each device, up to 10 devices.
*/
public void setUpdates(java.util.Collection updates) {
if (updates == null) {
this.updates = null;
return;
}
this.updates = new java.util.ArrayList(updates);
}
/**
*
* Contains the position update details for each device, up to 10 devices.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setUpdates(java.util.Collection)} or {@link #withUpdates(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param updates
* Contains the position update details for each device, up to 10 devices.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchUpdateDevicePositionRequest withUpdates(DevicePositionUpdate... updates) {
if (this.updates == null) {
setUpdates(new java.util.ArrayList(updates.length));
}
for (DevicePositionUpdate ele : updates) {
this.updates.add(ele);
}
return this;
}
/**
*
* Contains the position update details for each device, up to 10 devices.
*
*
* @param updates
* Contains the position update details for each device, up to 10 devices.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchUpdateDevicePositionRequest withUpdates(java.util.Collection updates) {
setUpdates(updates);
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 (getTrackerName() != null)
sb.append("TrackerName: ").append(getTrackerName()).append(",");
if (getUpdates() != null)
sb.append("Updates: ").append(getUpdates());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof BatchUpdateDevicePositionRequest == false)
return false;
BatchUpdateDevicePositionRequest other = (BatchUpdateDevicePositionRequest) obj;
if (other.getTrackerName() == null ^ this.getTrackerName() == null)
return false;
if (other.getTrackerName() != null && other.getTrackerName().equals(this.getTrackerName()) == false)
return false;
if (other.getUpdates() == null ^ this.getUpdates() == null)
return false;
if (other.getUpdates() != null && other.getUpdates().equals(this.getUpdates()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getTrackerName() == null) ? 0 : getTrackerName().hashCode());
hashCode = prime * hashCode + ((getUpdates() == null) ? 0 : getUpdates().hashCode());
return hashCode;
}
@Override
public BatchUpdateDevicePositionRequest clone() {
return (BatchUpdateDevicePositionRequest) super.clone();
}
}