All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.logspace.jvm.agent.api.json.EventPage Maven / Gradle / Ivy

The newest version!
/**
 * Logspace
 * Copyright (c) 2015 Indoqa Software Design und Beratung GmbH. All rights reserved.
 * This program and the accompanying materials are made available under the terms of
 * the Eclipse Public License Version 1.0, which accompanies this distribution and
 * is available at http://www.eclipse.org/legal/epl-v10.html.
 */
package io.logspace.jvm.agent.api.json;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import io.logspace.jvm.agent.api.event.Event;

public class EventPage implements Iterable {

    private List events = new ArrayList();

    private String nextCursorMark;

    private long totalCount;

    public void addEvent(Event event) {
        this.events.add(event);
    }

    public List getEvents() {
        return this.events;
    }

    public String getNextCursorMark() {
        return this.nextCursorMark;
    }

    public long getTotalCount() {
        return this.totalCount;
    }

    @Override
    public Iterator iterator() {
        return this.events.iterator();
    }

    public void setEvents(List events) {
        this.events = events;
    }

    public void setNextCursorMark(String nextCursorMark) {
        this.nextCursorMark = nextCursorMark;
    }

    public void setTotalCount(long totalCount) {
        this.totalCount = totalCount;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy