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

com.netgrif.application.engine.importer.model.CasePermissionRef Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version

package com.netgrif.application.engine.importer.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for casePermissionRef complex type. * *

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

 * <complexType name="casePermissionRef">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="caseLogic" type="{}caseLogic"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "casePermissionRef", propOrder = { "id", "caseLogic" }) @XmlSeeAlso({ CaseRoleRef.class, CaseUserRef.class }) public class CasePermissionRef { @XmlElement(required = true) protected String id; @XmlElement(required = true) protected CaseLogic caseLogic; /** * 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 caseLogic property. * * @return * possible object is * {@link CaseLogic } * */ public CaseLogic getCaseLogic() { return caseLogic; } /** * Sets the value of the caseLogic property. * * @param value * allowed object is * {@link CaseLogic } * */ public void setCaseLogic(CaseLogic value) { this.caseLogic = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy