com.scene7.ipsapi.GetJobLogDetailsParam 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="originalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="logTypeArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}StringArray" minOccurs="0"/>
* <element name="recordsPerPage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="resultsPage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="sortBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sortDirection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"companyHandle",
"jobHandle",
"originalName",
"logTypeArray",
"recordsPerPage",
"resultsPage",
"sortBy",
"sortDirection"
})
@XmlRootElement(name = "getJobLogDetailsParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class GetJobLogDetailsParam {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String companyHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String jobHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String originalName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected StringArray logTypeArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Integer recordsPerPage;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Integer resultsPage;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String sortBy;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String sortDirection;
/**
* Gets the value of the companyHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCompanyHandle() {
return companyHandle;
}
/**
* Sets the value of the companyHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCompanyHandle(String value) {
this.companyHandle = value;
}
/**
* Gets the value of the jobHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobHandle() {
return jobHandle;
}
/**
* Sets the value of the jobHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobHandle(String value) {
this.jobHandle = value;
}
/**
* Gets the value of the originalName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOriginalName() {
return originalName;
}
/**
* Sets the value of the originalName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOriginalName(String value) {
this.originalName = value;
}
/**
* Gets the value of the logTypeArray property.
*
* @return
* possible object is
* {@link StringArray }
*
*/
public StringArray getLogTypeArray() {
return logTypeArray;
}
/**
* Sets the value of the logTypeArray property.
*
* @param value
* allowed object is
* {@link StringArray }
*
*/
public void setLogTypeArray(StringArray value) {
this.logTypeArray = value;
}
/**
* Gets the value of the recordsPerPage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRecordsPerPage() {
return recordsPerPage;
}
/**
* Sets the value of the recordsPerPage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRecordsPerPage(Integer value) {
this.recordsPerPage = value;
}
/**
* Gets the value of the resultsPage property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getResultsPage() {
return resultsPage;
}
/**
* Sets the value of the resultsPage property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setResultsPage(Integer value) {
this.resultsPage = value;
}
/**
* Gets the value of the sortBy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSortBy() {
return sortBy;
}
/**
* Sets the value of the sortBy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSortBy(String value) {
this.sortBy = value;
}
/**
* Gets the value of the sortDirection property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSortDirection() {
return sortDirection;
}
/**
* Sets the value of the sortDirection property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSortDirection(String value) {
this.sortDirection = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy