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

com.dottydingo.hyperion.api.EntityResponse Maven / Gradle / Ivy

The newest version!
package com.dottydingo.hyperion.api;

import com.fasterxml.jackson.annotation.JsonPropertyOrder;

import java.util.List;

/**
 * A paged entity list response
 */
@JsonPropertyOrder({"page","entries"})
public class EntityResponse extends EntityList
{
    private Page page;

    /**
     * Return the page information
     * @return the page information
     */
    public Page getPage()
    {
        return page;
    }

    /**
     * Set the page information
     * @param page The page information
     */
    public void setPage(Page page)
    {
        this.page = page;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy