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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.DescribeMetadataObject Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DescribeMetadataObject complex type. * *

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

 * <complexType name="DescribeMetadataObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="childXmlNames" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="directoryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="inFolder" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="metaFile" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="suffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="xmlName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DescribeMetadataObject", propOrder = { "childXmlNames", "directoryName", "inFolder", "metaFile", "suffix", "xmlName" }) public class DescribeMetadataObject { protected List childXmlNames; @XmlElement(required = true) protected String directoryName; protected boolean inFolder; protected boolean metaFile; protected String suffix; @XmlElement(required = true) protected String xmlName; /** * Gets the value of the childXmlNames property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the childXmlNames property. * *

* For example, to add a new item, do as follows: *

     *    getChildXmlNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getChildXmlNames() { if (childXmlNames == null) { childXmlNames = new ArrayList(); } return this.childXmlNames; } /** * Gets the value of the directoryName property. * * @return * possible object is * {@link String } * */ public String getDirectoryName() { return directoryName; } /** * Sets the value of the directoryName property. * * @param value * allowed object is * {@link String } * */ public void setDirectoryName(String value) { this.directoryName = value; } /** * Gets the value of the inFolder property. * */ public boolean isInFolder() { return inFolder; } /** * Sets the value of the inFolder property. * */ public void setInFolder(boolean value) { this.inFolder = value; } /** * Gets the value of the metaFile property. * */ public boolean isMetaFile() { return metaFile; } /** * Sets the value of the metaFile property. * */ public void setMetaFile(boolean value) { this.metaFile = value; } /** * Gets the value of the suffix property. * * @return * possible object is * {@link String } * */ public String getSuffix() { return suffix; } /** * Sets the value of the suffix property. * * @param value * allowed object is * {@link String } * */ public void setSuffix(String value) { this.suffix = value; } /** * Gets the value of the xmlName property. * * @return * possible object is * {@link String } * */ public String getXmlName() { return xmlName; } /** * Sets the value of the xmlName property. * * @param value * allowed object is * {@link String } * */ public void setXmlName(String value) { this.xmlName = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy