public class Invalidation
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private java.util.Date |
createTime
The date and time the invalidation request was first made.
|
private java.lang.String |
id
The identifier for the invalidation request.
|
private InvalidationBatch |
invalidationBatch
The current invalidation information for the batch request.
|
private java.lang.String |
status
The status of the invalidation request.
|
Constructor and Description |
---|
Invalidation() |
Modifier and Type | Method and Description |
---|---|
Invalidation |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreateTime()
The date and time the invalidation request was first made.
|
java.lang.String |
getId()
The identifier for the invalidation request.
|
InvalidationBatch |
getInvalidationBatch()
The current invalidation information for the batch request.
|
java.lang.String |
getStatus()
The status of the invalidation request.
|
int |
hashCode() |
void |
setCreateTime(java.util.Date createTime)
The date and time the invalidation request was first made.
|
void |
setId(java.lang.String id)
The identifier for the invalidation request.
|
void |
setInvalidationBatch(InvalidationBatch invalidationBatch)
The current invalidation information for the batch request.
|
void |
setStatus(java.lang.String status)
The status of the invalidation request.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Invalidation |
withCreateTime(java.util.Date createTime)
The date and time the invalidation request was first made.
|
Invalidation |
withId(java.lang.String id)
The identifier for the invalidation request.
|
Invalidation |
withInvalidationBatch(InvalidationBatch invalidationBatch)
The current invalidation information for the batch request.
|
Invalidation |
withStatus(java.lang.String status)
The status of the invalidation request.
|
private java.lang.String id
private java.lang.String status
private java.util.Date createTime
private InvalidationBatch invalidationBatch
public void setId(java.lang.String id)
id
- The identifier for the invalidation request. For example:
IDFDVBD632BHDS5.public java.lang.String getId()
public Invalidation withId(java.lang.String id)
id
- The identifier for the invalidation request. For example:
IDFDVBD632BHDS5.public void setStatus(java.lang.String status)
status
- The status of the invalidation request. When the invalidation
batch is finished, the status is Completed.public java.lang.String getStatus()
public Invalidation withStatus(java.lang.String status)
status
- The status of the invalidation request. When the invalidation
batch is finished, the status is Completed.public void setCreateTime(java.util.Date createTime)
createTime
- The date and time the invalidation request was first made.public java.util.Date getCreateTime()
public Invalidation withCreateTime(java.util.Date createTime)
createTime
- The date and time the invalidation request was first made.public void setInvalidationBatch(InvalidationBatch invalidationBatch)
invalidationBatch
- The current invalidation information for the batch request.public InvalidationBatch getInvalidationBatch()
public Invalidation withInvalidationBatch(InvalidationBatch invalidationBatch)
invalidationBatch
- The current invalidation information for the batch request.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public Invalidation clone()
clone
in class java.lang.Object