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

com.auth0.json.mgmt.rules.RulesPage Maven / Gradle / Ivy

There is a newer version: 2.12.0
Show newest version
package com.auth0.json.mgmt.rules;

import com.auth0.json.mgmt.Page;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

import java.util.List;

/**
 * Class that represents a given page of Rules. Related to the {@link com.auth0.client.mgmt.RulesEntity} entity.
 */
@SuppressWarnings({"unused", "WeakerAccess"})
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonDeserialize(using = RulesPageDeserializer.class)
public class RulesPage extends Page {

    public RulesPage(List items) {
        super(items);
    }

    public RulesPage(Integer start, Integer length, Integer total, Integer limit, List items) {
        super(start, length, total, limit, items);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy