nosi.webapps.igrp.dao.TaskAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of igrp-core Show documentation
Show all versions of igrp-core Show documentation
IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.
package nosi.webapps.igrp.dao;
import java.io.Serializable;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import javax.persistence.Cacheable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.ForeignKey;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.Transient;
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import nosi.core.webapp.Core;
/**
* Emanuel
* 9 May 2018
*/
@Entity
@Table(name="tbl_task_access")
@Cacheable
@Cache(usage = CacheConcurrencyStrategy.READ_WRITE,region="TaskAcessCache")
public class TaskAccess extends IGRPBaseActiveRecord implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Integer id;
@ManyToOne(fetch=FetchType.EAGER)
@JoinColumn(name = "org_fk",foreignKey = @ForeignKey(name="TASK_ACCESS_ORGANIZATION_FK"),nullable=false)
private Organization organization;
@ManyToOne(fetch=FetchType.EAGER)
@JoinColumn(name = "prof_fk",foreignKey = @ForeignKey(name="TASK_ACCESS_PROFILE_TYPE_FK"))
private ProfileType profileType;
private Integer user_fk;
@Column(length=100)
private String taskName;
@Column(length=150)
private String processName;
private String taskDescription;
@Transient
private String taskId;
public TaskAccess() {
super();
}
public TaskAccess(Organization organization, ProfileType profileType, Integer user_fk, String taskName,
String processName, String taskDescription, String taskId) {
super();
this.organization = organization;
this.profileType = profileType;
this.user_fk = user_fk;
this.taskName = taskName;
this.processName = processName;
this.taskDescription = taskDescription;
this.taskId = taskId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Organization getOrganization() {
return organization;
}
public void setOrganization(Organization organization) {
this.organization = organization;
}
public ProfileType getProfileType() {
return profileType;
}
public void setProfileType(ProfileType profileType) {
this.profileType = profileType;
}
public String getTaskName() {
return taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
public String getProcessName() {
return processName;
}
public void setProcessName(String processName) {
this.processName = processName;
}
public Integer getUser_fk() {
return user_fk;
}
public void setUser_fk(Integer user_fk) {
this.user_fk = user_fk;
}
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getTaskDescription() {
return taskDescription;
}
public void setTaskDescription(String taskDescription) {
this.taskDescription = taskDescription;
}
public List getTaskAccess(){
return getTaskAccess(null);
}
public Boolean hasStartTaskAccess(){
return hasStartTaskAccess(null);
}
public Boolean hasNoStartTaskAccess(){
return hasNoStartTaskAccess(null) ;
}
public Boolean hasStartTaskAccess(String processKey) {
return new TaskAccess().find().keepConnection().limit(1)
.andWhere("organization", "=",Core.getCurrentOrganization())
.andWhere("profileType", "=",Core.getCurrentProfile())
.andWhere("processName","=",processKey)
.andWhere("taskName", "like","Start%")
.getCount()>0;
}
public Boolean hasNoStartTaskAccess(String processKey) {
return new TaskAccess().find().keepConnection().limit(1)
.andWhere("organization", "=",Core.getCurrentOrganization())
.andWhere("profileType", "=",Core.getCurrentProfile())
.andWhere("processName","=",processKey)
.andWhere("taskName", "not like","Start%")
.getCount()>0;
}
public Boolean hasTaskAccess(String processKey){
TaskAccess taskAccess = new TaskAccess().find().keepConnection().limit(1);
//if(new Organization().find().where(Organization.FI)Core.getCurrentOrganization()).)
taskAccess.where("organization", "=", Core.getCurrentOrganization());
taskAccess.andWhere("profileType", "=", Core.getCurrentProfile())
.andWhere("processName", "=", processKey);
return taskAccess
.getCount()>0;
}
public List getTaskAccess(String processKey){
return new TaskAccess().find().keepConnection()
.where("organization", "=",Core.getCurrentOrganization())
.andWhere("profileType", "=",Core.getCurrentProfile())
.andWhere("processName","=",processKey)
.orderByAsc("taskDescription")
.all();
}
@Override
public String toString() {
return "TaskAccess [id=" + id + ", organization=" + organization + ", profileType=" + profileType
+ ", taskName=" + taskName + ", processName=" + processName + "]";
}
public Set getMyProcessNames() {
return this.getTaskAccess().stream().map(TaskAccess::getProcessName).collect(Collectors.toSet());
}
}