/** * Mule Coupa Cloud Connector * * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. * * Coupa Connector com.coupa package contains portions of code based on Coupa4j * http://code.google.com/p/coupa4j/, under a MIT license: * http://www.opensource.org/licenses/mit-license.php. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.01.11 at 10:56:43 AM ART // package com.coupa.resources; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for punchout-site-summary complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="punchout-site-summary"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> * <element name="created-at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="updated-at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="identity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="secret" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="sender-domain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="sender-identity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="protocol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="supplier-id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> * <element name="created-by" type="{}user-summary" minOccurs="0"/> * <element name="updated-by" type="{}user-summary" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "punchout-site-summary", propOrder = { "id", "createdAt", "updatedAt", "name", "url", "domain", "identity", "secret", "senderDomain", "senderIdentity", "protocol", "supplierId", "createdBy", "updatedBy" }) public class PunchoutSiteSummary { protected BigInteger id; @XmlElement(name = "created-at") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdAt; @XmlElement(name = "updated-at") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updatedAt; protected String name; protected String url; protected String domain; protected String identity; protected String secret; @XmlElement(name = "sender-domain") protected String senderDomain; @XmlElement(name = "sender-identity") protected String senderIdentity; protected String protocol; @XmlElement(name = "supplier-id") protected BigInteger supplierId; @XmlElement(name = "created-by") protected UserSummary createdBy; @XmlElement(name = "updated-by") protected UserSummary updatedBy; /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } /** * Gets the value of the createdAt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedAt() { return createdAt; } /** * Sets the value of the createdAt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedAt(XMLGregorianCalendar value) { this.createdAt = value; } /** * Gets the value of the updatedAt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUpdatedAt() { return updatedAt; } /** * Sets the value of the updatedAt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setUpdatedAt(XMLGregorianCalendar value) { this.updatedAt = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Gets the value of the domain property. * * @return * possible object is * {@link String } * */ public String getDomain() { return domain; } /** * Sets the value of the domain property. * * @param value * allowed object is * {@link String } * */ public void setDomain(String value) { this.domain = value; } /** * Gets the value of the identity property. * * @return * possible object is * {@link String } * */ public String getIdentity() { return identity; } /** * Sets the value of the identity property. * * @param value * allowed object is * {@link String } * */ public void setIdentity(String value) { this.identity = value; } /** * Gets the value of the secret property. * * @return * possible object is * {@link String } * */ public String getSecret() { return secret; } /** * Sets the value of the secret property. * * @param value * allowed object is * {@link String } * */ public void setSecret(String value) { this.secret = value; } /** * Gets the value of the senderDomain property. * * @return * possible object is * {@link String } * */ public String getSenderDomain() { return senderDomain; } /** * Sets the value of the senderDomain property. * * @param value * allowed object is * {@link String } * */ public void setSenderDomain(String value) { this.senderDomain = value; } /** * Gets the value of the senderIdentity property. * * @return * possible object is * {@link String } * */ public String getSenderIdentity() { return senderIdentity; } /** * Sets the value of the senderIdentity property. * * @param value * allowed object is * {@link String } * */ public void setSenderIdentity(String value) { this.senderIdentity = value; } /** * Gets the value of the protocol property. * * @return * possible object is * {@link String } * */ public String getProtocol() { return protocol; } /** * Sets the value of the protocol property. * * @param value * allowed object is * {@link String } * */ public void setProtocol(String value) { this.protocol = value; } /** * Gets the value of the supplierId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSupplierId() { return supplierId; } /** * Sets the value of the supplierId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSupplierId(BigInteger value) { this.supplierId = value; } /** * Gets the value of the createdBy property. * * @return * possible object is * {@link UserSummary } * */ public UserSummary getCreatedBy() { return createdBy; } /** * Sets the value of the createdBy property. * * @param value * allowed object is * {@link UserSummary } * */ public void setCreatedBy(UserSummary value) { this.createdBy = value; } /** * Gets the value of the updatedBy property. * * @return * possible object is * {@link UserSummary } * */ public UserSummary getUpdatedBy() { return updatedBy; } /** * Sets the value of the updatedBy property. * * @param value * allowed object is * {@link UserSummary } * */ public void setUpdatedBy(UserSummary value) { this.updatedBy = value; } }