com.scene7.ipsapi.AssetSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
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/2024-05-30-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", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"assetHandle",
"type",
"name",
"folder",
"filename",
"created",
"createUser",
"lastModified",
"lastModifyUser",
"metadataArray",
"score",
"scoreDetail"
})
public class AssetSummary {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String assetHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String type;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String name;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String folder;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String filename;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar created;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String createUser;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModified;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String lastModifyUser;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected MetadataArray metadataArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Double score;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
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;
}
}