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

com.nhl.link.rest.client.ClientDataResponse Maven / Gradle / Ivy

There is a newer version: 2.13
Show newest version
package com.nhl.link.rest.client;

import javax.ws.rs.core.Response.Status;
import java.util.List;

/**
 * @since 2.0
 */
public class ClientDataResponse extends ClientSimpleResponse {

    private List data;
    private long total;

    public ClientDataResponse(Status status, List data, long total) {
        super(status);
        this.data = data;
        this.total = total;
    }

    public List getData() {
        return data;
    }

    public long getTotal() {
        return total;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy