com.netgrif.application.engine.importer.model.PermissionRef 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for permissionRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="permissionRef">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logic" type="{}logic"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "permissionRef", propOrder = {
"id",
"logic"
})
@XmlSeeAlso({
RoleRef.class,
UserRef.class
})
public class PermissionRef {
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected Logic logic;
/**
* 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 logic property.
*
* @return
* possible object is
* {@link Logic }
*
*/
public Logic getLogic() {
return logic;
}
/**
* Sets the value of the logic property.
*
* @param value
* allowed object is
* {@link Logic }
*
*/
public void setLogic(Logic value) {
this.logic = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy