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

com.scene7.ipsapi.AssetSummary 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 AssetSummary complex type. * *

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

 * <complexType name="AssetSummary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="assetHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="folder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="filename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="created" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="createUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="lastModifyUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="metadataArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}MetadataArray" minOccurs="0"/>
 *         <element name="score" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="scoreDetail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AssetSummary", propOrder = { "assetHandle", "type", "name", "folder", "filename", "created", "createUser", "lastModified", "lastModifyUser", "metadataArray", "score", "scoreDetail" }) public class AssetSummary { @XmlElement(required = true) protected String assetHandle; protected String type; protected String name; protected String folder; protected String filename; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar created; protected String createUser; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModified; protected String lastModifyUser; protected MetadataArray metadataArray; protected Double score; protected String scoreDetail; /** * Gets the value of the assetHandle property. * * @return * possible object is * {@link String } * */ public String getAssetHandle() { return assetHandle; } /** * Sets the value of the assetHandle property. * * @param value * allowed object is * {@link String } * */ public void setAssetHandle(String value) { this.assetHandle = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = 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 folder property. * * @return * possible object is * {@link String } * */ public String getFolder() { return folder; } /** * Sets the value of the folder property. * * @param value * allowed object is * {@link String } * */ public void setFolder(String value) { this.folder = value; } /** * Gets the value of the filename property. * * @return * possible object is * {@link String } * */ public String getFilename() { return filename; } /** * Sets the value of the filename property. * * @param value * allowed object is * {@link String } * */ public void setFilename(String value) { this.filename = value; } /** * Gets the value of the created property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreated() { return created; } /** * Sets the value of the created property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreated(XMLGregorianCalendar value) { this.created = value; } /** * Gets the value of the createUser property. * * @return * possible object is * {@link String } * */ public String getCreateUser() { return createUser; } /** * Sets the value of the createUser property. * * @param value * allowed object is * {@link String } * */ public void setCreateUser(String value) { this.createUser = value; } /** * Gets the value of the lastModified property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModified() { return lastModified; } /** * Sets the value of the lastModified property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModified(XMLGregorianCalendar value) { this.lastModified = value; } /** * Gets the value of the lastModifyUser property. * * @return * possible object is * {@link String } * */ public String getLastModifyUser() { return lastModifyUser; } /** * Sets the value of the lastModifyUser property. * * @param value * allowed object is * {@link String } * */ public void setLastModifyUser(String value) { this.lastModifyUser = value; } /** * Gets the value of the metadataArray property. * * @return * possible object is * {@link MetadataArray } * */ public MetadataArray getMetadataArray() { return metadataArray; } /** * Sets the value of the metadataArray property. * * @param value * allowed object is * {@link MetadataArray } * */ public void setMetadataArray(MetadataArray value) { this.metadataArray = value; } /** * Gets the value of the score property. * * @return * possible object is * {@link Double } * */ public Double getScore() { return score; } /** * Sets the value of the score property. * * @param value * allowed object is * {@link Double } * */ public void setScore(Double value) { this.score = value; } /** * Gets the value of the scoreDetail property. * * @return * possible object is * {@link String } * */ public String getScoreDetail() { return scoreDetail; } /** * Sets the value of the scoreDetail property. * * @param value * allowed object is * {@link String } * */ public void setScoreDetail(String value) { this.scoreDetail = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy