Package be.recipe.services.core
Class Page
- java.lang.Object
-
- be.recipe.services.core.Page
-
public class Page extends Object
Java class for Page complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Page"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="month"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> <minInclusive value="1"/> <maxInclusive value="12"/> </restriction> </simpleType> </element> <element name="year"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> <minInclusive value="2000"/> <maxInclusive value="2100"/> </restriction> </simpleType> </element> <element name="pageNumber"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> </restriction> </simpleType> </element> <element name="context" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}base64Binary"> </restriction> </simpleType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]contextprotected intmonthprotected BigIntegerpageNumberprotected intyear
-
Constructor Summary
Constructors Constructor Description Page()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getContext()Gets the value of the context property.intgetMonth()Gets the value of the month property.BigIntegergetPageNumber()Gets the value of the pageNumber property.intgetYear()Gets the value of the year property.voidsetContext(byte[] value)Sets the value of the context property.voidsetMonth(int value)Sets the value of the month property.voidsetPageNumber(BigInteger value)Sets the value of the pageNumber property.voidsetYear(int value)Sets the value of the year property.
-
-
-
Field Detail
-
month
protected int month
-
year
protected int year
-
pageNumber
protected BigInteger pageNumber
-
context
protected byte[] context
-
-
Method Detail
-
getMonth
public int getMonth()
Gets the value of the month property.
-
setMonth
public void setMonth(int value)
Sets the value of the month property.
-
getYear
public int getYear()
Gets the value of the year property.
-
setYear
public void setYear(int value)
Sets the value of the year property.
-
getPageNumber
public BigInteger getPageNumber()
Gets the value of the pageNumber property.- Returns:
- possible object is
BigInteger
-
setPageNumber
public void setPageNumber(BigInteger value)
Sets the value of the pageNumber property.- Parameters:
value- allowed object isBigInteger
-
getContext
public byte[] getContext()
Gets the value of the context property.- Returns:
- possible object is byte[]
-
setContext
public void setContext(byte[] value)
Sets the value of the context property.- Parameters:
value- allowed object is byte[]
-
-