com.netgrif.application.engine.importer.model.CaseEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.importer.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for caseEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="caseEvent">
* <complexContent>
* <extension base="{}baseEvent">
* <attribute name="type" use="required" type="{}caseEventType" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "caseEvent")
public class CaseEvent
extends BaseEvent
{
@XmlAttribute(name = "type", required = true)
protected CaseEventType type;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link CaseEventType }
*
*/
public CaseEventType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link CaseEventType }
*
*/
public void setType(CaseEventType value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy