![JAR search and dependency download from the Maven repository](/logo.png)
com.scene7.ipsapi.GetMediaPortalEventParam 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* 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="eventType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ipsUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="jobName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="jobDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="beforeDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="afterDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"eventType",
"ipsUser",
"companyHandle",
"jobName",
"jobDescription",
"beforeDate",
"afterDate"
})
@XmlRootElement(name = "getMediaPortalEventParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class GetMediaPortalEventParam {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String eventType;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String ipsUser;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String companyHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String jobName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String jobDescription;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar beforeDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar afterDate;
/**
* Gets the value of the eventType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEventType() {
return eventType;
}
/**
* Sets the value of the eventType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEventType(String value) {
this.eventType = value;
}
/**
* Gets the value of the ipsUser property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpsUser() {
return ipsUser;
}
/**
* Sets the value of the ipsUser property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpsUser(String value) {
this.ipsUser = value;
}
/**
* 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 jobName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobName() {
return jobName;
}
/**
* Sets the value of the jobName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobName(String value) {
this.jobName = value;
}
/**
* Gets the value of the jobDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobDescription() {
return jobDescription;
}
/**
* Sets the value of the jobDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobDescription(String value) {
this.jobDescription = value;
}
/**
* Gets the value of the beforeDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBeforeDate() {
return beforeDate;
}
/**
* Sets the value of the beforeDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setBeforeDate(XMLGregorianCalendar value) {
this.beforeDate = value;
}
/**
* Gets the value of the afterDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAfterDate() {
return afterDate;
}
/**
* Sets the value of the afterDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAfterDate(XMLGregorianCalendar value) {
this.afterDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy