package org.picketlink.identity.federation.saml.v2.ac.classes; import java.math.BigInteger; /** * <p> * Java class for LengthType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LengthType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="min" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="max" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public class LengthType { protected BigInteger min; protected BigInteger max; /** * Gets the value of the min property. * * @return possible object is {@link BigInteger } * */ public BigInteger getMin() { return min; } /** * Sets the value of the min property. * * @param value allowed object is {@link BigInteger } * */ public void setMin(BigInteger value) { this.min = value; } /** * Gets the value of the max property. * * @return possible object is {@link BigInteger } * */ public BigInteger getMax() { return max; } /** * Sets the value of the max property. * * @param value allowed object is {@link BigInteger } * */ public void setMax(BigInteger value) { this.max = value; } }