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

com.bronto.api.model.WorkflowObject Maven / Gradle / Ivy

The newest version!

package com.bronto.api.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for workflowObject complex type. * *

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

 * <complexType name="workflowObject">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="siteId" 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="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="modifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="activatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="deActivatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "workflowObject", propOrder = { "id", "siteId", "name", "description", "status", "createdDate", "modifiedDate", "activatedDate", "deActivatedDate" }) public class WorkflowObject { protected String id; protected String siteId; protected String name; protected String description; protected String status; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar modifiedDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar activatedDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar deActivatedDate; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the siteId property. * * @return * possible object is * {@link String } * */ public String getSiteId() { return siteId; } /** * Sets the value of the siteId property. * * @param value * allowed object is * {@link String } * */ public void setSiteId(String value) { this.siteId = 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 description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = value; } /** * Gets the value of the modifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getModifiedDate() { return modifiedDate; } /** * Sets the value of the modifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setModifiedDate(XMLGregorianCalendar value) { this.modifiedDate = value; } /** * Gets the value of the activatedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getActivatedDate() { return activatedDate; } /** * Sets the value of the activatedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setActivatedDate(XMLGregorianCalendar value) { this.activatedDate = value; } /** * Gets the value of the deActivatedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDeActivatedDate() { return deActivatedDate; } /** * Sets the value of the deActivatedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDeActivatedDate(XMLGregorianCalendar value) { this.deActivatedDate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy