
com.amazonaws.services.elasticfilesystem.model.FileSystemSize Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi Show documentation
/*
* 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.elasticfilesystem.model;
import java.io.Serializable;
/**
*
* Latest known metered size (in bytes) of data stored in the file system, in
* its Value
field, and the time at which that size was determined
* in its Timestamp
field. Note that the value does not represent
* the size of a consistent snapshot of the file system, but it is eventually
* consistent when there are no writes to the file system. That is, the value
* will represent the actual size only if the file system is not modified for a
* period longer than a couple of hours. Otherwise, the value is not necessarily
* the exact size the file system was at any instant in time.
*
*/
public class FileSystemSize implements Serializable, Cloneable {
/**
*
* Latest known metered size (in bytes) of data stored in the file system.
*
*/
private Long value;
/**
*
* Time at which the size of data, returned in the Value
field,
* was determined. The value is the integer number of seconds since
* 1970-01-01T00:00:00Z.
*
*/
private java.util.Date timestamp;
/**
*
* Latest known metered size (in bytes) of data stored in the file system.
*
*
* @param value
* Latest known metered size (in bytes) of data stored in the file
* system.
*/
public void setValue(Long value) {
this.value = value;
}
/**
*
* Latest known metered size (in bytes) of data stored in the file system.
*
*
* @return Latest known metered size (in bytes) of data stored in the file
* system.
*/
public Long getValue() {
return this.value;
}
/**
*
* Latest known metered size (in bytes) of data stored in the file system.
*
*
* @param value
* Latest known metered size (in bytes) of data stored in the file
* system.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public FileSystemSize withValue(Long value) {
setValue(value);
return this;
}
/**
*
* Time at which the size of data, returned in the Value
field,
* was determined. The value is the integer number of seconds since
* 1970-01-01T00:00:00Z.
*
*
* @param timestamp
* Time at which the size of data, returned in the Value
* field, was determined. The value is the integer number of seconds
* since 1970-01-01T00:00:00Z.
*/
public void setTimestamp(java.util.Date timestamp) {
this.timestamp = timestamp;
}
/**
*
* Time at which the size of data, returned in the Value
field,
* was determined. The value is the integer number of seconds since
* 1970-01-01T00:00:00Z.
*
*
* @return Time at which the size of data, returned in the
* Value
field, was determined. The value is the
* integer number of seconds since 1970-01-01T00:00:00Z.
*/
public java.util.Date getTimestamp() {
return this.timestamp;
}
/**
*
* Time at which the size of data, returned in the Value
field,
* was determined. The value is the integer number of seconds since
* 1970-01-01T00:00:00Z.
*
*
* @param timestamp
* Time at which the size of data, returned in the Value
* field, was determined. The value is the integer number of seconds
* since 1970-01-01T00:00:00Z.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public FileSystemSize withTimestamp(java.util.Date timestamp) {
setTimestamp(timestamp);
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 (getValue() != null)
sb.append("Value: " + getValue() + ",");
if (getTimestamp() != null)
sb.append("Timestamp: " + getTimestamp());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof FileSystemSize == false)
return false;
FileSystemSize other = (FileSystemSize) obj;
if (other.getValue() == null ^ this.getValue() == null)
return false;
if (other.getValue() != null
&& other.getValue().equals(this.getValue()) == false)
return false;
if (other.getTimestamp() == null ^ this.getTimestamp() == null)
return false;
if (other.getTimestamp() != null
&& other.getTimestamp().equals(this.getTimestamp()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode
+ ((getValue() == null) ? 0 : getValue().hashCode());
hashCode = prime * hashCode
+ ((getTimestamp() == null) ? 0 : getTimestamp().hashCode());
return hashCode;
}
@Override
public FileSystemSize clone() {
try {
return (FileSystemSize) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}