com.netgrif.application.engine.importer.model.AssignedUser 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.XmlType;
/**
* Java class for assignedUser complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="assignedUser">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="cancel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="reassign" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "assignedUser", propOrder = {
"cancel",
"reassign"
})
public class AssignedUser {
protected Boolean cancel;
protected Boolean reassign;
/**
* Gets the value of the cancel property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCancel() {
return cancel;
}
/**
* Sets the value of the cancel property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCancel(Boolean value) {
this.cancel = value;
}
/**
* Gets the value of the reassign property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isReassign() {
return reassign;
}
/**
* Sets the value of the reassign property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setReassign(Boolean value) {
this.reassign = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy