com.peterphi.std.guice.restclient.jaxb.webquery.WQConstraints Maven / Gradle / Ivy
package com.peterphi.std.guice.restclient.jaxb.webquery;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;
@XmlType(name = "ConstraintsType")
public class WQConstraints
{
@XmlAttribute
public int offset = 0;
@XmlAttribute
public int limit = 200;
@XmlAttribute
public boolean computeSize = false;
/**
* The subclass to constrain the results to
*/
@XmlAttribute(name = "subclass", required = false)
public String subclass = null;
/**
* The constraints. This group will be implicitly ANDed together
*/
@XmlElementRefs({@XmlElementRef(type = WQConstraint.class), @XmlElementRef(type = WQGroup.class)})
public List constraints = new ArrayList<>();
@Override
public String toString()
{
return "WebQueryConstraints{" +
"offset=" + offset +
", limit=" + limit +
", computeSize=" + computeSize +
", clazz='" + subclass + '\'' +
", constraints=" + constraints +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy