001package org.nuxeo.ecm.webdav.jaxrs;
002
003import javax.xml.bind.annotation.XmlRootElement;
004import javax.xml.bind.annotation.XmlValue;
005
006/**
007 * Microsoft Exchange Server 2003 item. http://msdn.microsoft.com/en-us/library/aa487549(v=EXCHG.65).aspx
008 *
009 * @author Organization: Gagnavarslan ehf
010 */
011@XmlRootElement(name = "iscollection")
012public final class IsCollection {
013
014    @XmlValue
015    private Integer collection;
016
017    public IsCollection() {
018    }
019
020    public IsCollection(Integer collection) {
021        this.collection = collection;
022    }
023
024    public Integer getCollection() {
025        return collection;
026    }
027}