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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.LetterheadHeaderFooter 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LetterheadHeaderFooter complex type. * *

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

 * <complexType name="LetterheadHeaderFooter">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="backgroundColor" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="horizontalAlignment" type="{http://soap.sforce.com/2006/04/metadata}LetterheadHorizontalAlignment" minOccurs="0"/>
 *         <element name="logo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="verticalAlignment" type="{http://soap.sforce.com/2006/04/metadata}LetterheadVerticalAlignment" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LetterheadHeaderFooter", propOrder = { "backgroundColor", "height", "horizontalAlignment", "logo", "verticalAlignment" }) public class LetterheadHeaderFooter { @XmlElement(required = true) protected String backgroundColor; protected int height; protected LetterheadHorizontalAlignment horizontalAlignment; protected String logo; protected LetterheadVerticalAlignment verticalAlignment; /** * Gets the value of the backgroundColor property. * * @return * possible object is * {@link String } * */ public String getBackgroundColor() { return backgroundColor; } /** * Sets the value of the backgroundColor property. * * @param value * allowed object is * {@link String } * */ public void setBackgroundColor(String value) { this.backgroundColor = value; } /** * Gets the value of the height property. * */ public int getHeight() { return height; } /** * Sets the value of the height property. * */ public void setHeight(int value) { this.height = value; } /** * Gets the value of the horizontalAlignment property. * * @return * possible object is * {@link LetterheadHorizontalAlignment } * */ public LetterheadHorizontalAlignment getHorizontalAlignment() { return horizontalAlignment; } /** * Sets the value of the horizontalAlignment property. * * @param value * allowed object is * {@link LetterheadHorizontalAlignment } * */ public void setHorizontalAlignment(LetterheadHorizontalAlignment value) { this.horizontalAlignment = value; } /** * Gets the value of the logo property. * * @return * possible object is * {@link String } * */ public String getLogo() { return logo; } /** * Sets the value of the logo property. * * @param value * allowed object is * {@link String } * */ public void setLogo(String value) { this.logo = value; } /** * Gets the value of the verticalAlignment property. * * @return * possible object is * {@link LetterheadVerticalAlignment } * */ public LetterheadVerticalAlignment getVerticalAlignment() { return verticalAlignment; } /** * Sets the value of the verticalAlignment property. * * @param value * allowed object is * {@link LetterheadVerticalAlignment } * */ public void setVerticalAlignment(LetterheadVerticalAlignment value) { this.verticalAlignment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy