com.auth0.json.mgmt.rules.RulesPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth0 Show documentation
Show all versions of auth0 Show documentation
Java client library for the Auth0 platform.
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);
}
}