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

com.scene7.ipsapi.Metadata 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for Metadata complex type. * *

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

 * <complexType name="Metadata">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="boolVal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="longVal" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="doubleVal" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="dateVal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="valueArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Metadata", propOrder = { "name", "value", "boolVal", "longVal", "doubleVal", "dateVal", "valueArray" }) public class Metadata { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String value; protected Boolean boolVal; protected Long longVal; protected Double doubleVal; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dateVal; protected StringArray valueArray; /** * 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 value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the boolVal property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBoolVal() { return boolVal; } /** * Sets the value of the boolVal property. * * @param value * allowed object is * {@link Boolean } * */ public void setBoolVal(Boolean value) { this.boolVal = value; } /** * Gets the value of the longVal property. * * @return * possible object is * {@link Long } * */ public Long getLongVal() { return longVal; } /** * Sets the value of the longVal property. * * @param value * allowed object is * {@link Long } * */ public void setLongVal(Long value) { this.longVal = value; } /** * Gets the value of the doubleVal property. * * @return * possible object is * {@link Double } * */ public Double getDoubleVal() { return doubleVal; } /** * Sets the value of the doubleVal property. * * @param value * allowed object is * {@link Double } * */ public void setDoubleVal(Double value) { this.doubleVal = value; } /** * Gets the value of the dateVal property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateVal() { return dateVal; } /** * Sets the value of the dateVal property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateVal(XMLGregorianCalendar value) { this.dateVal = value; } /** * Gets the value of the valueArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getValueArray() { return valueArray; } /** * Sets the value of the valueArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setValueArray(StringArray value) { this.valueArray = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy