* The events. *
*/ private com.amazonaws.internal.SdkInternalList* The token for the next set of items in the forward direction. The token expires after 24 hours. If you have * reached the end of the stream, it returns the same token you passed in. *
*/ private String nextForwardToken; /** ** The token for the next set of items in the backward direction. The token expires after 24 hours. This token is * not null. If you have reached the end of the stream, it returns the same token you passed in. *
*/ private String nextBackwardToken; /** ** The events. *
* * @return The events. */ public java.util.List* The events. *
* * @param events * The events. */ public void setEvents(java.util.Collection* The events. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setEvents(java.util.Collection)} or {@link #withEvents(java.util.Collection)} if you want to override the * existing values. *
* * @param events * The events. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLogEventsResult withEvents(OutputLogEvent... events) { if (this.events == null) { setEvents(new com.amazonaws.internal.SdkInternalList* The events. *
* * @param events * The events. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLogEventsResult withEvents(java.util.Collection* The token for the next set of items in the forward direction. The token expires after 24 hours. If you have * reached the end of the stream, it returns the same token you passed in. *
* * @param nextForwardToken * The token for the next set of items in the forward direction. The token expires after 24 hours. If you * have reached the end of the stream, it returns the same token you passed in. */ public void setNextForwardToken(String nextForwardToken) { this.nextForwardToken = nextForwardToken; } /** ** The token for the next set of items in the forward direction. The token expires after 24 hours. If you have * reached the end of the stream, it returns the same token you passed in. *
* * @return The token for the next set of items in the forward direction. The token expires after 24 hours. If you * have reached the end of the stream, it returns the same token you passed in. */ public String getNextForwardToken() { return this.nextForwardToken; } /** ** The token for the next set of items in the forward direction. The token expires after 24 hours. If you have * reached the end of the stream, it returns the same token you passed in. *
* * @param nextForwardToken * The token for the next set of items in the forward direction. The token expires after 24 hours. If you * have reached the end of the stream, it returns the same token you passed in. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLogEventsResult withNextForwardToken(String nextForwardToken) { setNextForwardToken(nextForwardToken); return this; } /** ** The token for the next set of items in the backward direction. The token expires after 24 hours. This token is * not null. If you have reached the end of the stream, it returns the same token you passed in. *
* * @param nextBackwardToken * The token for the next set of items in the backward direction. The token expires after 24 hours. This * token is not null. If you have reached the end of the stream, it returns the same token you passed in. */ public void setNextBackwardToken(String nextBackwardToken) { this.nextBackwardToken = nextBackwardToken; } /** ** The token for the next set of items in the backward direction. The token expires after 24 hours. This token is * not null. If you have reached the end of the stream, it returns the same token you passed in. *
* * @return The token for the next set of items in the backward direction. The token expires after 24 hours. This * token is not null. If you have reached the end of the stream, it returns the same token you passed in. */ public String getNextBackwardToken() { return this.nextBackwardToken; } /** ** The token for the next set of items in the backward direction. The token expires after 24 hours. This token is * not null. If you have reached the end of the stream, it returns the same token you passed in. *
* * @param nextBackwardToken * The token for the next set of items in the backward direction. The token expires after 24 hours. This * token is not null. If you have reached the end of the stream, it returns the same token you passed in. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLogEventsResult withNextBackwardToken(String nextBackwardToken) { setNextBackwardToken(nextBackwardToken); 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 (getEvents() != null) sb.append("Events: ").append(getEvents()).append(","); if (getNextForwardToken() != null) sb.append("NextForwardToken: ").append(getNextForwardToken()).append(","); if (getNextBackwardToken() != null) sb.append("NextBackwardToken: ").append(getNextBackwardToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetLogEventsResult == false) return false; GetLogEventsResult other = (GetLogEventsResult) obj; if (other.getEvents() == null ^ this.getEvents() == null) return false; if (other.getEvents() != null && other.getEvents().equals(this.getEvents()) == false) return false; if (other.getNextForwardToken() == null ^ this.getNextForwardToken() == null) return false; if (other.getNextForwardToken() != null && other.getNextForwardToken().equals(this.getNextForwardToken()) == false) return false; if (other.getNextBackwardToken() == null ^ this.getNextBackwardToken() == null) return false; if (other.getNextBackwardToken() != null && other.getNextBackwardToken().equals(this.getNextBackwardToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEvents() == null) ? 0 : getEvents().hashCode()); hashCode = prime * hashCode + ((getNextForwardToken() == null) ? 0 : getNextForwardToken().hashCode()); hashCode = prime * hashCode + ((getNextBackwardToken() == null) ? 0 : getNextBackwardToken().hashCode()); return hashCode; } @Override public GetLogEventsResult clone() { try { return (GetLogEventsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }