com.scene7.ipsapi.SubAsset 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: 2022.10.13 at 11:32:55 AM 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 SubAsset complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SubAsset">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="subAssetHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="subType" 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="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="userDataArray" type="{http://www.scene7.com/IpsApi/xsd/2021-04-26-beta}UserDataArray" minOccurs="0"/>
* <element name="metadataArray" type="{http://www.scene7.com/IpsApi/xsd/2021-04-26-beta}MetadataArray" minOccurs="0"/>
* <element name="smartCrop" type="{http://www.scene7.com/IpsApi/xsd/2021-04-26-beta}SmartCrop" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubAsset", namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", propOrder = {
"subAssetHandle",
"type",
"subType",
"name",
"created",
"createUser",
"lastModified",
"lastModifyUser",
"userDataArray",
"metadataArray",
"smartCrop"
})
public class SubAsset {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String subAssetHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String type;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String subType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String name;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar created;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String createUser;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModified;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String lastModifyUser;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected UserDataArray userDataArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected MetadataArray metadataArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected SmartCrop smartCrop;
/**
* Gets the value of the subAssetHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubAssetHandle() {
return subAssetHandle;
}
/**
* Sets the value of the subAssetHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubAssetHandle(String value) {
this.subAssetHandle = 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 subType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubType() {
return subType;
}
/**
* Sets the value of the subType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubType(String value) {
this.subType = 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 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 userDataArray property.
*
* @return
* possible object is
* {@link UserDataArray }
*
*/
public UserDataArray getUserDataArray() {
return userDataArray;
}
/**
* Sets the value of the userDataArray property.
*
* @param value
* allowed object is
* {@link UserDataArray }
*
*/
public void setUserDataArray(UserDataArray value) {
this.userDataArray = 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 smartCrop property.
*
* @return
* possible object is
* {@link SmartCrop }
*
*/
public SmartCrop getSmartCrop() {
return smartCrop;
}
/**
* Sets the value of the smartCrop property.
*
* @param value
* allowed object is
* {@link SmartCrop }
*
*/
public void setSmartCrop(SmartCrop value) {
this.smartCrop = value;
}
}