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

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

The newest version!

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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for MetadataWithContent complex type. * *

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

 * <complexType name="MetadataWithContent">
 *   <complexContent>
 *     <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
 *       <sequence>
 *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataWithContent", propOrder = { "content" }) @XmlSeeAlso({ Scontrol.class, EmailTemplate.class, ApexPage.class, ApexTrigger.class, StaticResource.class, ApexClass.class, Document.class, ApexComponent.class }) public class MetadataWithContent extends Metadata { protected byte[] content; /** * Gets the value of the content property. * * @return * possible object is * byte[] */ public byte[] getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * byte[] */ public void setContent(byte[] value) { this.content = ((byte[]) value); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy