All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scene7.ipsapi.Folder Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for Folder complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Folder">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="folderHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="path" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="childLastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="permissionSetHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="hasSubfolders" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="subfolderArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}FolderArray" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Folder", propOrder = { "folderHandle", "path", "lastModified", "childLastModified", "permissionSetHandle", "hasSubfolders", "subfolderArray" }) public class Folder { protected String folderHandle; protected String path; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModified; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar childLastModified; protected String permissionSetHandle; protected Boolean hasSubfolders; protected FolderArray subfolderArray; /** * Gets the value of the folderHandle property. * * @return * possible object is * {@link String } * */ public String getFolderHandle() { return folderHandle; } /** * Sets the value of the folderHandle property. * * @param value * allowed object is * {@link String } * */ public void setFolderHandle(String value) { this.folderHandle = value; } /** * Gets the value of the path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the lastModified property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModified() { return lastModified; } /** * Sets the value of the lastModified property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModified(XMLGregorianCalendar value) { this.lastModified = value; } /** * Gets the value of the childLastModified property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getChildLastModified() { return childLastModified; } /** * Sets the value of the childLastModified property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setChildLastModified(XMLGregorianCalendar value) { this.childLastModified = value; } /** * Gets the value of the permissionSetHandle property. * * @return * possible object is * {@link String } * */ public String getPermissionSetHandle() { return permissionSetHandle; } /** * Sets the value of the permissionSetHandle property. * * @param value * allowed object is * {@link String } * */ public void setPermissionSetHandle(String value) { this.permissionSetHandle = value; } /** * Gets the value of the hasSubfolders property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHasSubfolders() { return hasSubfolders; } /** * Sets the value of the hasSubfolders property. * * @param value * allowed object is * {@link Boolean } * */ public void setHasSubfolders(Boolean value) { this.hasSubfolders = value; } /** * Gets the value of the subfolderArray property. * * @return * possible object is * {@link FolderArray } * */ public FolderArray getSubfolderArray() { return subfolderArray; } /** * Sets the value of the subfolderArray property. * * @param value * allowed object is * {@link FolderArray } * */ public void setSubfolderArray(FolderArray value) { this.subfolderArray = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy