/* * Copyright 2010-2019 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.logs.model; import java.io.Serializable; public class GetLogEventsResult implements Serializable { /** *

* The events. *

*/ private java.util.List events; /** *

* 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 * will return the same token you passed in. *

*

* Constraints:
* Length: 1 -
*/ private String nextForwardToken; /** *

* The token for the next set of items in the backward direction. The token * expires after 24 hours. This token will never be null. If you have * reached the end of the stream, it will return the same token you passed * in. *

*

* Constraints:
* Length: 1 -
*/ private String nextBackwardToken; /** *

* The events. *

* * @return

* The events. *

*/ public java.util.List getEvents() { return events; } /** *

* The events. *

* * @param events

* The events. *

*/ public void setEvents(java.util.Collection events) { if (events == null) { this.events = null; return; } this.events = new java.util.ArrayList(events); } /** *

* The events. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param events

* The events. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetLogEventsResult withEvents(OutputLogEvent... events) { if (getEvents() == null) { this.events = new java.util.ArrayList(events.length); } for (OutputLogEvent value : events) { this.events.add(value); } return this; } /** *

* The events. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param events

* The events. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetLogEventsResult withEvents(java.util.Collection events) { setEvents(events); return this; } /** *

* 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 * will return the same token you passed in. *

*

* Constraints:
* Length: 1 -
* * @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 will return the same token you passed in. *

*/ public String getNextForwardToken() { return 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 * will return the same token you passed in. *

*

* Constraints:
* Length: 1 -
* * @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 will return 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 * will return the same token you passed in. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 -
* * @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 will return the same token you passed in. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetLogEventsResult withNextForwardToken(String nextForwardToken) { this.nextForwardToken = nextForwardToken; return this; } /** *

* The token for the next set of items in the backward direction. The token * expires after 24 hours. This token will never be null. If you have * reached the end of the stream, it will return the same token you passed * in. *

*

* Constraints:
* Length: 1 -
* * @return

* The token for the next set of items in the backward direction. * The token expires after 24 hours. This token will never be null. * If you have reached the end of the stream, it will return the * same token you passed in. *

*/ public String getNextBackwardToken() { return nextBackwardToken; } /** *

* The token for the next set of items in the backward direction. The token * expires after 24 hours. This token will never be null. If you have * reached the end of the stream, it will return the same token you passed * in. *

*

* Constraints:
* Length: 1 -
* * @param nextBackwardToken

* The token for the next set of items in the backward direction. * The token expires after 24 hours. This token will never be * null. If you have reached the end of the stream, it will * return 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 will never be null. If you have * reached the end of the stream, it will return the same token you passed * in. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 -
* * @param nextBackwardToken

* The token for the next set of items in the backward direction. * The token expires after 24 hours. This token will never be * null. If you have reached the end of the stream, it will * return the same token you passed in. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetLogEventsResult withNextBackwardToken(String nextBackwardToken) { this.nextBackwardToken = nextBackwardToken; 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 (getEvents() != null) sb.append("events: " + getEvents() + ","); if (getNextForwardToken() != null) sb.append("nextForwardToken: " + getNextForwardToken() + ","); if (getNextBackwardToken() != null) sb.append("nextBackwardToken: " + getNextBackwardToken()); sb.append("}"); return sb.toString(); } @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 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; } }