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

com.xcase.integrate.objects.IntegrateLogList Maven / Gradle / Ivy

/**
 * Copyright 2016 Xcase All rights reserved.
 */
package com.xcase.integrate.objects;

import java.util.List;
import javax.xml.bind.annotation.*;

/**
 *
 * @author martinpg
 */
@XmlRootElement(name = "log_list")
public class IntegrateLogList {

    @XmlElementWrapper(name = "log_entries")
    @XmlElement(name = "log_entry")
    private List logEntryList;

    @XmlElement(name = "next_page_starts_at")
    private String next_page_starts_at;

    public List getLogEntries() {
        return this.logEntryList;
    }

    public String getNextPageStartsAt() {
        return this.next_page_starts_at;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy