Coverage Report - org.kuali.rice.kew.actionrequest.ActionRequestValue
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionRequestValue
0%
0/260
0%
0/130
1.652
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  *
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.actionrequest;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.apache.commons.lang.builder.ToStringBuilder;
 21  
 import org.apache.commons.lang.builder.ToStringStyle;
 22  
 import org.hibernate.annotations.Fetch;
 23  
 import org.hibernate.annotations.FetchMode;
 24  
 import org.hibernate.annotations.GenericGenerator;
 25  
 import org.hibernate.annotations.Parameter;
 26  
 import org.kuali.rice.core.framework.persistence.jpa.OrmUtils;
 27  
 import org.kuali.rice.core.util.RiceConstants;
 28  
 import org.kuali.rice.kew.actionitem.ActionItem;
 29  
 import org.kuali.rice.kew.actiontaken.ActionTakenValue;
 30  
 import org.kuali.rice.kew.engine.CompatUtils;
 31  
 import org.kuali.rice.kew.engine.node.RouteNode;
 32  
 import org.kuali.rice.kew.engine.node.RouteNodeInstance;
 33  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 34  
 import org.kuali.rice.kew.rule.RuleBaseValues;
 35  
 import org.kuali.rice.kew.rule.service.RuleService;
 36  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 37  
 import org.kuali.rice.kew.user.RoleRecipient;
 38  
 import org.kuali.rice.kew.util.CodeTranslator;
 39  
 import org.kuali.rice.kew.util.KEWConstants;
 40  
 import org.kuali.rice.kim.api.entity.principal.Principal;
 41  
 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
 42  
 import org.kuali.rice.kim.api.group.Group;
 43  
 import org.kuali.rice.kim.bo.Person;
 44  
 
 45  
 
 46  
 import javax.persistence.*;
 47  
 import java.io.Serializable;
 48  
 import java.sql.Timestamp;
 49  
 import java.util.ArrayList;
 50  
 import java.util.Iterator;
 51  
 import java.util.List;
 52  
 
 53  
 
 54  
 /**
 55  
  * Bean mapped to DB. Represents ActionRequest to a workgroup, user or role.  Contains
 56  
  * references to children/parent if a member of a graph
 57  
  *
 58  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 59  
  */
 60  
 @Entity
 61  
 @Table(name="KREW_ACTN_RQST_T")
 62  
 //@Sequence(name="KREW_ACTN_RQST_S", property="actionRequestId")
 63  
 @NamedQueries({
 64  
   @NamedQuery(name="ActionRequestValue.FindByDocumentId", query="select arv from ActionRequestValue arv where arv.documentId = :documentId"),
 65  
   @NamedQuery(name="ActionRequestValue.GetUserRequestCount", query="select count(arv) from ActionRequestValue arv where arv.documentId = :documentId and arv.recipientTypeCd = :recipientTypeCd and arv.principalId = :principalId and arv.currentIndicator = :currentIndicator"),
 66  
   @NamedQuery(name="ActionRequestValue.FindActivatedByGroup", query="select count(arv) from ActionRequestValue arv where arv.groupId = :groupId and arv.currentIndicator = :currentIndicator and arv.status = :status"),
 67  
   @NamedQuery(name="ActionRequestValue.FindAllByDocId", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator"),
 68  
   @NamedQuery(name="ActionRequestValue.FindAllPendingByDocId", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and (arv.status = '" + KEWConstants.ACTION_REQUEST_INITIALIZED + "' or arv.status = '" + KEWConstants.ACTION_REQUEST_ACTIVATED + "')"),
 69  
   @NamedQuery(name="ActionRequestValue.FindAllRootByDocId", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.parentActionRequest is null"),
 70  
   @NamedQuery(name="ActionRequestValue.FindByStatusAndDocId", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.status = :status"),
 71  
   @NamedQuery(name="ActionRequestValue.FindPendingByActionRequestedAndDocId", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.actionRequested = :actionRequested and (arv.status = '" + KEWConstants.ACTION_REQUEST_INITIALIZED + "' or arv.status = '" + KEWConstants.ACTION_REQUEST_ACTIVATED + "')"),
 72  
   @NamedQuery(name="ActionRequestValue.FindPendingByDocIdAtOrBelowRouteLevel", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.status <> :status and arv.routeLevel <= :routeLevel"),
 73  
   @NamedQuery(name="ActionRequestValue.FindPendingByResponsibilityIds", query="select arv from ActionRequestValue arv where arv.responsibilityId in (:responsibilityIds) and (arv.status = '" + KEWConstants.ACTION_REQUEST_INITIALIZED + "' or arv.status = '" + KEWConstants.ACTION_REQUEST_ACTIVATED + "')"),
 74  
   @NamedQuery(name="ActionRequestValue.FindPendingRootRequestsByDocIdAtOrBelowRouteLevel", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.parentActionRequest is null and arv.status <> :status and routeLevel <= :routeLevel"),
 75  
   @NamedQuery(name="ActionRequestValue.FindPendingRootRequestsByDocIdAtRouteLevel", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.parentActionRequest is null and arv.status <> :status and routeLevel = :routeLevel"),
 76  
   @NamedQuery(name="ActionRequestValue.FindPendingRootRequestsByDocIdAtRouteNode", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.parentActionRequest is null and arv.nodeInstance.routeNodeInstanceId = :routeNodeInstanceId and (arv.status = '" + KEWConstants.ACTION_REQUEST_INITIALIZED + "' or arv.status = '" + KEWConstants.ACTION_REQUEST_ACTIVATED + "')"),
 77  
   @NamedQuery(name="ActionRequestValue.FindPendingRootRequestsByDocumentType", query="select arv from ActionRequestValue arv where arv.documentId in (select drhv.documentId from DocumentRouteHeaderValue drhv where drhv.documentTypeId = :documentTypeId) and arv.currentIndicator = :currentIndicator and arv.parentActionRequest is null and (arv.status = '" + KEWConstants.ACTION_REQUEST_INITIALIZED + "' or arv.status = '" + KEWConstants.ACTION_REQUEST_ACTIVATED + "')"),
 78  
   @NamedQuery(name="ActionRequestValue.FindRootRequestsByDocIdAtRouteNode", query="select arv from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.parentActionRequest is null and arv.nodeInstance.routeNodeInstanceId = :routeNodeInstanceId"),
 79  
   @NamedQuery(name="ActionRequestValue.GetRequestGroupIds", query="select arv.groupId from ActionRequestValue arv where arv.documentId = :documentId and arv.currentIndicator = :currentIndicator and arv.recipientTypeCd = :recipientTypeCd"),
 80  
   @NamedQuery(name="ActionRequestValue.FindByStatusAndGroupId", query="select arv from ActionRequestValue arv where arv.groupId = :groupId and arv.currentIndicator = :currentIndicator and arv.status = :status")
 81  
 })
 82  
 public class ActionRequestValue implements Serializable {
 83  
 
 84  
         private static final long serialVersionUID = 8781414791855848385L;
 85  
 
 86  0
         private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(ActionRequestValue.class);
 87  
 
 88  
     private static final String ACTION_CODE_RANK = "FKACB";//B is a hack for allowing blanket approves to count for approve and complete requests in findPreviousAction in ActionTakenService this is a hack and accounts for the -3 on compareActionCode
 89  
     private static final String RECIPIENT_TYPE_RANK = "RWU";
 90  
     private static final String DELEGATION_TYPE_RANK = "SPN";
 91  
 
 92  
     @Id
 93  
     @GeneratedValue(generator="KREW_ACTN_RQST_S")
 94  
         @GenericGenerator(name="KREW_ACTN_RQST_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={
 95  
                         @Parameter(name="sequence_name",value="KREW_ACTN_RQST_S"),
 96  
                         @Parameter(name="value_column",value="id")
 97  
         })
 98  
         @Column(name="ACTN_RQST_ID")
 99  
         private Long actionRequestId;
 100  
     @Column(name="ACTN_RQST_CD")
 101  
         private String actionRequested;
 102  
     @Column(name="DOC_HDR_ID")
 103  
         private String documentId;
 104  
     @Column(name="STAT_CD")
 105  
         private String status;
 106  
     @Column(name="RSP_ID")
 107  
         private Long responsibilityId;
 108  
     @Column(name="GRP_ID")
 109  
         private String groupId;
 110  
     @Column(name="RECIP_TYP_CD")
 111  
         private String recipientTypeCd;
 112  
     @Column(name="PRIO_NBR")
 113  
         private Integer priority;
 114  
     @Column(name="RTE_LVL_NBR")
 115  
         private Integer routeLevel;
 116  
     @Column(name="ACTN_TKN_ID", insertable=false, updatable=false)
 117  
         private Long actionTakenId;
 118  0
     @Column(name="DOC_VER_NBR")
 119  
     private Integer docVersion = 1;
 120  
         @Column(name="CRTE_DT")
 121  
         private java.sql.Timestamp createDate;
 122  
     @Column(name="RSP_DESC_TXT")
 123  
         private String responsibilityDesc;
 124  
     @Column(name="ACTN_RQST_ANNOTN_TXT")
 125  
         private String annotation;
 126  
     @Column(name="VER_NBR")
 127  
         private Integer jrfVerNbr;
 128  
     @Column(name="PRNCPL_ID")
 129  
         private String principalId;
 130  
     @Column(name="FRC_ACTN")
 131  
         private Boolean forceAction;
 132  
     @Column(name="PARNT_ID", insertable=false, updatable=false)
 133  
         private Long parentActionRequestId;
 134  
     @Column(name="QUAL_ROLE_NM")
 135  
         private String qualifiedRoleName;
 136  
     @Column(name="ROLE_NM")
 137  
         private String roleName;
 138  
     @Column(name="QUAL_ROLE_NM_LBL_TXT")
 139  
         private String qualifiedRoleNameLabel;
 140  
     @Transient
 141  
     private String displayStatus;
 142  
     @Column(name="RULE_ID")
 143  
         private Long ruleBaseValuesId;
 144  
 
 145  0
     @Column(name="DLGN_TYP")
 146  
     private String delegationType = KEWConstants.DELEGATION_NONE;
 147  
     @Column(name="APPR_PLCY")
 148  
         private String approvePolicy;
 149  
 
 150  
     @ManyToOne(fetch=FetchType.EAGER)
 151  
         @JoinColumn(name="PARNT_ID")
 152  
         private ActionRequestValue parentActionRequest;
 153  0
     @Fetch(value = FetchMode.SELECT)
 154  
     @OneToMany(mappedBy="parentActionRequest",cascade={CascadeType.PERSIST, CascadeType.MERGE},fetch=FetchType.EAGER)
 155  
     private List<ActionRequestValue> childrenRequests = new ArrayList<ActionRequestValue>();
 156  
     @ManyToOne(fetch=FetchType.EAGER)
 157  
         @JoinColumn(name="ACTN_TKN_ID")
 158  
         private ActionTakenValue actionTaken;
 159  
     //@OneToMany(fetch=FetchType.LAZY,mappedBy="actionRequestId")
 160  
     //private List<ActionItem> actionItems = new ArrayList<ActionItem>();
 161  0
     @Column(name="CUR_IND")
 162  
     private Boolean currentIndicator = true;
 163  
     @Transient
 164  
     private String createDateString;
 165  
     @Transient
 166  
     private String groupName;
 167  
 
 168  
     /* New Workflow 2.1 Field */
 169  
     // The node instance at which this request was generated
 170  
     @ManyToOne(fetch=FetchType.EAGER)
 171  
         @JoinColumn(name="RTE_NODE_INSTN_ID")
 172  
         private RouteNodeInstance nodeInstance;
 173  
 
 174  
     @Column(name="RQST_LBL")
 175  
     private String requestLabel;
 176  
     
 177  0
     @Transient
 178  
     private boolean resolveResponsibility = true;
 179  
     @Transient
 180  
     private DocumentRouteHeaderValue routeHeader;
 181  
     @Transient
 182  
     private List<ActionItem> simulatedActionItems;
 183  
     
 184  0
     public ActionRequestValue() {
 185  0
         createDate = new Timestamp(System.currentTimeMillis());
 186  0
     }
 187  
     
 188  
     //@PrePersist
 189  
     public void beforeInsert(){
 190  0
             OrmUtils.populateAutoIncValue(this, KEWServiceLocator.getEntityManagerFactory().createEntityManager());
 191  0
     }
 192  
    
 193  
     public Group getGroup() {
 194  0
         if (getGroupId() == null) {
 195  0
             LOG.error("Attempting to get a group with a blank group id");
 196  0
             return null;
 197  
         }
 198  0
         return KimApiServiceLocator.getIdentityManagementService().getGroup(getGroupId());
 199  
     }
 200  
 
 201  
     public String getRouteLevelName() {
 202  
         // this is for backward compatibility of requests which have not been converted
 203  0
         if (CompatUtils.isRouteLevelRequest(this)) {
 204  0
             int routeLevelInt = getRouteLevel();
 205  0
             if (routeLevelInt == KEWConstants.EXCEPTION_ROUTE_LEVEL) {
 206  0
                 return "Exception";
 207  
             }
 208  
 
 209  0
             List routeLevelNodes = CompatUtils.getRouteLevelCompatibleNodeList(KEWServiceLocator.getRouteHeaderService().getRouteHeader(documentId).getDocumentType());
 210  0
             if (!(routeLevelInt < routeLevelNodes.size())) {
 211  0
                 return "Not Found";
 212  
             }
 213  0
             return ((RouteNode)routeLevelNodes.get(routeLevelInt)).getRouteNodeName();
 214  
         } else {
 215  0
             return (nodeInstance == null ? "Exception" : nodeInstance.getName());
 216  
         }
 217  
     }
 218  
 
 219  
     public boolean isUserRequest() {
 220  0
         return principalId != null;
 221  
     }
 222  
 
 223  
     public Principal getPrincipal() {
 224  0
             if (getPrincipalId() == null) {
 225  0
                     return null;
 226  
             }
 227  0
             return KEWServiceLocator.getIdentityHelperService().getPrincipal(getPrincipalId());
 228  
     }
 229  
     
 230  
     public Person getPerson() {
 231  0
             if (getPrincipalId() == null) {
 232  0
                     return null;
 233  
             }
 234  0
             return KimApiServiceLocator.getPersonService().getPerson(getPrincipalId());
 235  
     }
 236  
 
 237  
     public String getDisplayName() {
 238  0
             if (isUserRequest()) {
 239  0
                 return getPerson().getName();
 240  0
             } else if (isGroupRequest()) {
 241  0
                     return getGroup().getName();
 242  0
             } else if (isRoleRequest()) {
 243  0
                     return getRoleName();
 244  
             }
 245  0
             return "";
 246  
     }
 247  
 
 248  
     public Recipient getRecipient() {
 249  0
         if (getPrincipalId() != null) {
 250  0
             return new KimPrincipalRecipient(getPrincipal());
 251  0
         } else if (getGroupId() != null){
 252  0
             return new KimGroupRecipient(getGroup());
 253  
         } else {
 254  0
                 return new RoleRecipient(this.getRoleName());
 255  
         }
 256  
     }
 257  
 
 258  
     public boolean isPending() {
 259  0
         return KEWConstants.ACTION_REQUEST_INITIALIZED.equals(getStatus()) || KEWConstants.ACTION_REQUEST_ACTIVATED.equals(getStatus());
 260  
     }
 261  
 
 262  
     public String getStatusLabel() {
 263  0
         return CodeTranslator.getActionRequestStatusLabel(getStatus());
 264  
     }
 265  
 
 266  
     public String getActionRequestedLabel() {
 267  0
             if (StringUtils.isNotBlank(getRequestLabel())) {
 268  0
                     return getRequestLabel();
 269  
             }
 270  0
             return CodeTranslator.getActionRequestLabel(getActionRequested());
 271  
     }
 272  
 
 273  
     /**
 274  
      * @return Returns the actionTaken.
 275  
      */
 276  
     public ActionTakenValue getActionTaken() {
 277  0
         return actionTaken;
 278  
     }
 279  
 
 280  
     /**
 281  
      * @param actionTaken
 282  
      *            The actionTaken to set.
 283  
      */
 284  
     public void setActionTaken(ActionTakenValue actionTaken) {
 285  0
         this.actionTaken = actionTaken;
 286  0
     }
 287  
 
 288  
     /**
 289  
      * @return Returns the actionRequested.
 290  
      */
 291  
     public String getActionRequested() {
 292  0
         return actionRequested;
 293  
     }
 294  
 
 295  
     /**
 296  
      * @param actionRequested
 297  
      *            The actionRequested to set.
 298  
      */
 299  
     public void setActionRequested(String actionRequested) {
 300  0
         this.actionRequested = actionRequested;
 301  0
     }
 302  
 
 303  
     /**
 304  
      * @return Returns the actionRequestId.
 305  
      */
 306  
     public Long getActionRequestId() {
 307  0
         return actionRequestId;
 308  
     }
 309  
 
 310  
     /**
 311  
      * @param actionRequestId
 312  
      *            The actionRequestId to set.
 313  
      */
 314  
     public void setActionRequestId(Long actionRequestId) {
 315  0
         this.actionRequestId = actionRequestId;
 316  0
     }
 317  
 
 318  
     /**
 319  
      * @return Returns the actionTakenId.
 320  
      */
 321  
     public Long getActionTakenId() {
 322  0
         return actionTakenId;
 323  
     }
 324  
 
 325  
     /**
 326  
      * @param actionTakenId
 327  
      *            The actionTakenId to set.
 328  
      */
 329  
     public void setActionTakenId(Long actionTakenId) {
 330  0
         this.actionTakenId = actionTakenId;
 331  0
     }
 332  
 
 333  
     /**
 334  
      * @return Returns the annotation.
 335  
      */
 336  
     public String getAnnotation() {
 337  0
         return annotation;
 338  
     }
 339  
 
 340  
     /**
 341  
      * @param annotation
 342  
      *            The annotation to set.
 343  
      */
 344  
     public void setAnnotation(String annotation) {
 345  0
         this.annotation = annotation;
 346  0
     }
 347  
 
 348  
     /**
 349  
      * @return Returns the createDate.
 350  
      */
 351  
     public java.sql.Timestamp getCreateDate() {
 352  0
         return createDate;
 353  
     }
 354  
 
 355  
     /**
 356  
      * @param createDate
 357  
      *            The createDate to set.
 358  
      */
 359  
     public void setCreateDate(java.sql.Timestamp createDate) {
 360  0
         this.createDate = createDate;
 361  0
     }
 362  
 
 363  
     /**
 364  
      * @return Returns the docVersion.
 365  
      */
 366  
     public Integer getDocVersion() {
 367  0
         return docVersion;
 368  
     }
 369  
 
 370  
     /**
 371  
      * @param docVersion
 372  
      *            The docVersion to set.
 373  
      */
 374  
     public void setDocVersion(Integer docVersion) {
 375  0
         this.docVersion = docVersion;
 376  0
     }
 377  
 
 378  
     public String getPrincipalId() {
 379  0
         return principalId;
 380  
     }
 381  
 
 382  
     public void setPrincipalId(String principalId) {
 383  0
         this.principalId = principalId;
 384  0
     }
 385  
     
 386  
     /**
 387  
      * @return Returns the forceAction.
 388  
      */
 389  
     public Boolean getForceAction() {
 390  0
         return forceAction;
 391  
     }
 392  
 
 393  
     /**
 394  
      * @param forceAction
 395  
      *            The forceAction to set.
 396  
      */
 397  
     public void setForceAction(Boolean forceAction) {
 398  0
         this.forceAction = forceAction;
 399  0
     }
 400  
 
 401  
     /**
 402  
      * @return Returns the jrfVerNbr.
 403  
      */
 404  
     public Integer getJrfVerNbr() {
 405  0
         return jrfVerNbr;
 406  
     }
 407  
 
 408  
     /**
 409  
      * @param jrfVerNbr
 410  
      *            The jrfVerNbr to set.
 411  
      */
 412  
     public void setJrfVerNbr(Integer jrfVerNbr) {
 413  0
         this.jrfVerNbr = jrfVerNbr;
 414  0
     }
 415  
 
 416  
     /**
 417  
      * @return Returns the priority.
 418  
      */
 419  
     public Integer getPriority() {
 420  0
         return priority;
 421  
     }
 422  
 
 423  
     /**
 424  
      * @param priority
 425  
      *            The priority to set.
 426  
      */
 427  
     public void setPriority(Integer priority) {
 428  0
         this.priority = priority;
 429  0
     }
 430  
 
 431  
     /**
 432  
      * @return Returns the recipientTypeCd.
 433  
      */
 434  
     public String getRecipientTypeCd() {
 435  0
         return recipientTypeCd;
 436  
     }
 437  
 
 438  
     /**
 439  
      * @param recipientTypeCd
 440  
      *            The recipientTypeCd to set.
 441  
      */
 442  
     public void setRecipientTypeCd(String recipientTypeCd) {
 443  0
         this.recipientTypeCd = recipientTypeCd;
 444  0
     }
 445  
 
 446  
     /**
 447  
      * @return Returns the responsibilityDesc.
 448  
      */
 449  
     public String getResponsibilityDesc() {
 450  0
         return responsibilityDesc;
 451  
     }
 452  
 
 453  
     /**
 454  
      * @param responsibilityDesc
 455  
      *            The responsibilityDesc to set.
 456  
      */
 457  
     public void setResponsibilityDesc(String responsibilityDesc) {
 458  0
         this.responsibilityDesc = responsibilityDesc;
 459  0
     }
 460  
 
 461  
     /**
 462  
      * @return Returns the responsibilityId.
 463  
      */
 464  
     public Long getResponsibilityId() {
 465  0
         return responsibilityId;
 466  
     }
 467  
 
 468  
     /**
 469  
      * @param responsibilityId
 470  
      *            The responsibilityId to set.
 471  
      */
 472  
     public void setResponsibilityId(Long responsibilityId) {
 473  0
         this.responsibilityId = responsibilityId;
 474  0
     }
 475  
 
 476  
     /**
 477  
      * @return Returns the documentId.
 478  
      */
 479  
     public String getDocumentId() {
 480  0
         return documentId;
 481  
     }
 482  
 
 483  
     public void setDocumentId(String documentId) {
 484  0
         this.documentId = documentId;
 485  0
     }
 486  
 
 487  
     public Integer getRouteLevel() {
 488  0
         return routeLevel;
 489  
     }
 490  
 
 491  
     public void setRouteLevel(Integer routeLevel) {
 492  0
         this.routeLevel = routeLevel;
 493  0
     }
 494  
 
 495  
     public String getStatus() {
 496  0
         return status;
 497  
     }
 498  
 
 499  
     public void setStatus(String status) {
 500  0
         this.status = status;
 501  0
     }
 502  
 
 503  
     public String getGroupId() {
 504  0
         return groupId;
 505  
     }
 506  
 
 507  
     public void setGroupId(String groupId) {
 508  0
         this.groupId = groupId;
 509  0
     }
 510  
 
 511  
     public boolean isInitialized() {
 512  0
         return KEWConstants.ACTION_REQUEST_INITIALIZED.equals(getStatus());
 513  
     }
 514  
 
 515  
     public boolean isActive() {
 516  0
         return KEWConstants.ACTION_REQUEST_ACTIVATED.equals(getStatus());
 517  
     }
 518  
 
 519  
     public boolean isApproveOrCompleteRequest() {
 520  0
         return KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(getActionRequested()) || KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(getActionRequested());
 521  
     }
 522  
 
 523  
     public boolean isDone() {
 524  0
         return KEWConstants.ACTION_REQUEST_DONE_STATE.equals(getStatus());
 525  
     }
 526  
 
 527  
     public boolean isReviewerUser() {
 528  0
         return KEWConstants.ACTION_REQUEST_USER_RECIPIENT_CD.equals(getRecipientTypeCd());
 529  
     }
 530  
 
 531  
     public boolean isRecipientRoutedRequest(String principalId) {
 532  
             //before altering this method it is used in checkRouteLogAuthentication
 533  
             //don't break that method
 534  0
             if (principalId == null || "".equals(principalId)) {
 535  0
                     return false;
 536  
             }
 537  
 
 538  0
             boolean isRecipientInGraph = false;
 539  0
             if (isReviewerUser()) {
 540  0
                             isRecipientInGraph = getPrincipalId().equals(principalId);
 541  0
             } else if (isGroupRequest()) {
 542  0
                     Group group = getGroup();
 543  0
                         if (group == null){
 544  0
                                 LOG.error("Was unable to retrieve workgroup " + getGroupId());
 545  
                         }
 546  0
                     isRecipientInGraph = KimApiServiceLocator.getIdentityManagementService().isMemberOfGroup(principalId, group.getId());
 547  
             }
 548  
 
 549  
 
 550  0
         for (ActionRequestValue childRequest : getChildrenRequests())
 551  
         {
 552  0
             isRecipientInGraph = isRecipientInGraph || childRequest.isRecipientRoutedRequest(principalId);
 553  
         }
 554  
 
 555  0
             return isRecipientInGraph;
 556  
     }
 557  
 
 558  
     public boolean isRecipientRoutedRequest(Recipient recipient) {
 559  
             //before altering this method it is used in checkRouteLogAuthentication
 560  
             //don't break that method
 561  0
             if (recipient == null) {
 562  0
                     return false;
 563  
             }
 564  
 
 565  0
             boolean isRecipientInGraph = false;
 566  0
             if (isReviewerUser()) {
 567  0
                     if (recipient instanceof KimPrincipalRecipient) {
 568  0
                             isRecipientInGraph = getPrincipalId().equals(((KimPrincipalRecipient) recipient).getPrincipalId());
 569  0
                     } else if (recipient instanceof KimGroupRecipient){
 570  0
                             isRecipientInGraph = KimApiServiceLocator.getIdentityManagementService().isMemberOfGroup(getPrincipalId(), ((KimGroupRecipient)recipient).getGroup().getId());
 571  
                     }
 572  
 
 573  0
             } else if (isGroupRequest()) {
 574  0
                     Group group = getGroup();
 575  0
                         if (group == null){
 576  0
                                 LOG.error("Was unable to retrieve workgroup " + getGroupId());
 577  
                         }
 578  0
                     if (recipient instanceof KimPrincipalRecipient) {
 579  0
                             KimPrincipalRecipient principalRecipient = (KimPrincipalRecipient)recipient;
 580  0
                             isRecipientInGraph = KimApiServiceLocator.getIdentityManagementService().isMemberOfGroup(principalRecipient.getPrincipalId(), group.getId());
 581  0
                     } else if (recipient instanceof KimGroupRecipient) {
 582  0
                             isRecipientInGraph = ((KimGroupRecipient) recipient).getGroup().getId().equals(group.getId());
 583  
                     }
 584  
             }
 585  
 
 586  
 
 587  0
         for (ActionRequestValue childRequest : getChildrenRequests())
 588  
         {
 589  0
             isRecipientInGraph = isRecipientInGraph || childRequest.isRecipientRoutedRequest(recipient);
 590  
         }
 591  
 
 592  0
             return isRecipientInGraph;
 593  
     }
 594  
 
 595  
     public boolean isGroupRequest(){
 596  0
             return KEWConstants.ACTION_REQUEST_GROUP_RECIPIENT_CD.equals(getRecipientTypeCd());
 597  
     }
 598  
 
 599  
     public boolean isRoleRequest() {
 600  0
         return KEWConstants.ACTION_REQUEST_ROLE_RECIPIENT_CD.equals(getRecipientTypeCd());
 601  
     }
 602  
 
 603  
     public boolean isAcknowledgeRequest() {
 604  0
         return KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ.equals(getActionRequested());
 605  
     }
 606  
 
 607  
     public boolean isApproveRequest() {
 608  0
         return KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(getActionRequested());
 609  
     }
 610  
 
 611  
     public boolean isCompleteRequst() {
 612  0
         return KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(getActionRequested());
 613  
     }
 614  
 
 615  
     public boolean isFYIRequest() {
 616  0
         return KEWConstants.ACTION_REQUEST_FYI_REQ.equals(getActionRequested());
 617  
     }
 618  
 
 619  
     /**
 620  
      * Allows comparison of action requests to see which is greater responsibility. -1 : indicates code 1 is lesser responsibility than code 2 0 : indicates the same responsibility 1 : indicates code1 is greater responsibility than code 2 The priority of action requests is as follows: fyi < acknowledge < (approve == complete)
 621  
      *
 622  
      * @param code1
 623  
      * @param code2
 624  
      * @param completeAndApproveTheSame
 625  
      * @return -1 if less than, 0 if equal, 1 if greater than
 626  
      */
 627  
     public static int compareActionCode(String code1, String code2, boolean completeAndApproveTheSame) {
 628  0
             int cutoff = Integer.MAX_VALUE;
 629  0
             if (completeAndApproveTheSame) {
 630  
                     // hacked so that APPROVE and COMPLETE are equal
 631  0
                     cutoff = ACTION_CODE_RANK.length() - 3;
 632  
             }
 633  0
         Integer code1Index = Math.min(ACTION_CODE_RANK.indexOf(code1), cutoff);
 634  0
         Integer code2Index = Math.min(ACTION_CODE_RANK.indexOf(code2), cutoff);
 635  0
         return code1Index.compareTo(code2Index);
 636  
     }
 637  
 
 638  
     /**
 639  
      * Allows comparison of action requests to see which is greater responsibility. -1 : indicates type 1 is lesser responsibility than type 2 0 : indicates the same responsibility 1 : indicates type1 is greater responsibility than type 2
 640  
      *
 641  
      * @param type1
 642  
      * @param type2
 643  
      * @return -1 if less than, 0 if equal, 1 if greater than
 644  
      */
 645  
     public static int compareRecipientType(String type1, String type2) {
 646  0
         Integer type1Index = RECIPIENT_TYPE_RANK.indexOf(type1);
 647  0
         Integer type2Index = RECIPIENT_TYPE_RANK.indexOf(type2);
 648  0
         return type1Index.compareTo(type2Index);
 649  
     }
 650  
 
 651  
     public static int compareDelegationType(String type1, String type2) {
 652  0
             if (StringUtils.isEmpty(type1)) {
 653  0
                     type1 = "N";
 654  
             }
 655  0
             if (StringUtils.isEmpty(type2)) {
 656  0
                     type2 = "N";
 657  
             }
 658  0
             Integer type1Index = DELEGATION_TYPE_RANK.indexOf(type1);
 659  0
         Integer type2Index = DELEGATION_TYPE_RANK.indexOf(type2);
 660  0
         return type1Index.compareTo(type2Index);
 661  
     }
 662  
 
 663  
     public List<ActionItem> getActionItems() {
 664  0
             if (this.simulatedActionItems == null || this.simulatedActionItems.isEmpty()) {
 665  0
                     return (List<ActionItem>) KEWServiceLocator.getActionListService().findByActionRequestId(actionRequestId);
 666  
             } else {
 667  0
                     return this.simulatedActionItems;
 668  
             }
 669  
     }
 670  
 
 671  
     public List<ActionItem> getSimulatedActionItems() {
 672  0
             if (this.simulatedActionItems == null) {
 673  0
                     this.simulatedActionItems = new ArrayList<ActionItem>();
 674  
             }
 675  0
                 return this.simulatedActionItems;
 676  
         }
 677  
 
 678  
         public void setSimulatedActionItems(List<ActionItem> simulatedActionItems) {
 679  0
                 this.simulatedActionItems = simulatedActionItems;
 680  0
         }
 681  
 
 682  
         public Boolean getCurrentIndicator() {
 683  0
         return currentIndicator;
 684  
     }
 685  
 
 686  
     public void setCurrentIndicator(Boolean currentIndicator) {
 687  0
         this.currentIndicator = currentIndicator;
 688  0
     }
 689  
 
 690  
     public Long getParentActionRequestId() {
 691  0
         return parentActionRequestId;
 692  
     }
 693  
 
 694  
     public void setParentActionRequestId(Long parentActionRequestId) {
 695  0
         this.parentActionRequestId = parentActionRequestId;
 696  0
     }
 697  
 
 698  
     public ActionRequestValue getParentActionRequest() {
 699  0
         return parentActionRequest;
 700  
     }
 701  
 
 702  
     public void setParentActionRequest(ActionRequestValue parentActionRequest) {
 703  0
         this.parentActionRequest = parentActionRequest;
 704  0
     }
 705  
 
 706  
     public List<ActionRequestValue> getChildrenRequests() {
 707  0
         return childrenRequests;
 708  
     }
 709  
 
 710  
     public void setChildrenRequests(List<ActionRequestValue> childrenRequests) {
 711  0
         this.childrenRequests = childrenRequests;
 712  0
     }
 713  
 
 714  
     public String getQualifiedRoleName() {
 715  0
         return qualifiedRoleName;
 716  
     }
 717  
 
 718  
     public void setQualifiedRoleName(String roleName) {
 719  0
         this.qualifiedRoleName = roleName;
 720  0
     }
 721  
 
 722  
     public String getDelegationType() {
 723  0
         return delegationType;
 724  
     }
 725  
 
 726  
     public void setDelegationType(String delegatePolicy) {
 727  0
         this.delegationType = delegatePolicy;
 728  0
     }
 729  
 
 730  
     public String getRoleName() {
 731  0
         return roleName;
 732  
     }
 733  
 
 734  
     public void setRoleName(String roleName) {
 735  0
         this.roleName = roleName;
 736  0
     }
 737  
 
 738  
     public String getApprovePolicy() {
 739  0
         return approvePolicy;
 740  
     }
 741  
 
 742  
     public void setApprovePolicy(String requestType) {
 743  0
         this.approvePolicy = requestType;
 744  0
     }
 745  
 
 746  
     public boolean getHasApprovePolicy() {
 747  0
         return getApprovePolicy() != null;
 748  
     }
 749  
 
 750  
     public boolean isDeactivated() {
 751  0
         return KEWConstants.ACTION_REQUEST_DONE_STATE.equals(getStatus());
 752  
     }
 753  
 
 754  
     public boolean hasParent() {
 755  0
         return getParentActionRequest() != null;
 756  
     }
 757  
 
 758  
     public boolean hasChild(ActionRequestValue actionRequest) {
 759  0
         if (actionRequest == null)
 760  0
             return false;
 761  0
         Long actionRequestId = actionRequest.getActionRequestId();
 762  0
         for (Iterator<ActionRequestValue> iter = getChildrenRequests().iterator(); iter.hasNext();) {
 763  0
             ActionRequestValue childRequest = iter.next();
 764  0
             if (childRequest.equals(actionRequest) || (actionRequestId != null && actionRequestId.equals(childRequest.getActionRequestId()))) {
 765  0
                 return true;
 766  
             }
 767  0
         }
 768  0
         return false;
 769  
     }
 770  
 
 771  
     public String getDisplayStatus() {
 772  0
         return displayStatus;
 773  
     }
 774  
 
 775  
     public void setDisplayStatus(String displayStatus) {
 776  0
         this.displayStatus = displayStatus;
 777  0
     }
 778  
 
 779  
     public String getQualifiedRoleNameLabel() {
 780  0
         return qualifiedRoleNameLabel;
 781  
     }
 782  
 
 783  
     public void setQualifiedRoleNameLabel(String qualifiedRoleNameLabel) {
 784  0
         this.qualifiedRoleNameLabel = qualifiedRoleNameLabel;
 785  0
     }
 786  
 
 787  
     public String getCreateDateString() {
 788  0
         if (createDateString == null || createDateString.trim().equals("")) {
 789  0
             return RiceConstants.getDefaultDateFormat().format(getCreateDate());
 790  
         } else {
 791  0
             return createDateString;
 792  
         }
 793  
     }
 794  
 
 795  
     public void setCreateDateString(String createDateString) {
 796  0
         this.createDateString = createDateString;
 797  0
     }
 798  
 
 799  
     public RouteNodeInstance getNodeInstance() {
 800  0
                 return nodeInstance;
 801  
         }
 802  
 
 803  
     public String getPotentialNodeName() {
 804  0
         return (getNodeInstance() == null ? "" : getNodeInstance().getName());
 805  
     }
 806  
 
 807  
         public void setNodeInstance(RouteNodeInstance nodeInstance) {
 808  0
                 this.nodeInstance = nodeInstance;
 809  0
         }
 810  
 
 811  
         public String getRecipientTypeLabel() {
 812  0
         return (String) KEWConstants.ACTION_REQUEST_RECIPIENT_TYPE.get(getRecipientTypeCd());
 813  
     }
 814  
 
 815  
     public RuleBaseValues getRuleBaseValues(){
 816  0
         if(ruleBaseValuesId != null){
 817  0
             return getRuleService().findRuleBaseValuesById(ruleBaseValuesId);
 818  
         }
 819  0
         return null;
 820  
     }
 821  
     public Long getRuleBaseValuesId() {
 822  0
         return ruleBaseValuesId;
 823  
     }
 824  
 
 825  
     public void setRuleBaseValuesId(Long ruleBaseValuesId) {
 826  0
         this.ruleBaseValuesId = ruleBaseValuesId;
 827  0
     }
 828  
     
 829  
         private RuleService getRuleService() {
 830  0
         return (RuleService) KEWServiceLocator.getService(KEWServiceLocator.RULE_SERVICE);
 831  
     }
 832  
 
 833  
     public boolean isPrimaryDelegator() {
 834  0
         boolean primaryDelegator = false;
 835  0
         for (Iterator<ActionRequestValue> iter = childrenRequests.iterator(); iter.hasNext();) {
 836  0
             ActionRequestValue childRequest = iter.next();
 837  0
             primaryDelegator = KEWConstants.DELEGATION_PRIMARY.equals(childRequest.getDelegationType()) || primaryDelegator;
 838  0
         }
 839  0
         return primaryDelegator;
 840  
     }
 841  
 
 842  
     /**
 843  
      * Used to get primary delegate names on route log in the 'Requested Of' section so primary delegate requests
 844  
      * list the delegate and not the delegator as having the request 'IN ACTION LIST'.  This method doesn't recurse
 845  
      * and therefore assume an AR structure.
 846  
      *
 847  
      * @return primary delgate requests
 848  
      */
 849  
     public List<ActionRequestValue> getPrimaryDelegateRequests() {
 850  0
         List<ActionRequestValue> primaryDelegateRequests = new ArrayList<ActionRequestValue>();
 851  0
         for (ActionRequestValue childRequest : childrenRequests)
 852  
         {
 853  0
             if (KEWConstants.DELEGATION_PRIMARY.equals(childRequest.getDelegationType()))
 854  
             {
 855  0
                 if (childRequest.isRoleRequest())
 856  
                 {
 857  0
                     for (ActionRequestValue actionRequestValue : childRequest.getChildrenRequests())
 858  
                     {
 859  0
                         primaryDelegateRequests.add(actionRequestValue);
 860  
                     }
 861  
                 } else
 862  
                 {
 863  0
                         primaryDelegateRequests.add(childRequest);
 864  
                 }
 865  
             }
 866  
         }
 867  0
         return primaryDelegateRequests;
 868  
     }
 869  
 
 870  
     public boolean isAdHocRequest() {                                          
 871  0
             return KEWConstants.ADHOC_REQUEST_RESPONSIBILITY_ID.equals(getResponsibilityId());
 872  
     }
 873  
 
 874  
     public boolean isGeneratedRequest() {
 875  0
             return KEWConstants.MACHINE_GENERATED_RESPONSIBILITY_ID.equals(getResponsibilityId());
 876  
     }
 877  
 
 878  
     public boolean isExceptionRequest() {
 879  0
             return KEWConstants.EXCEPTION_REQUEST_RESPONSIBILITY_ID.equals(getResponsibilityId());
 880  
     }
 881  
 
 882  
     public boolean isRouteModuleRequest() {
 883  0
             return getResponsibilityId() > 0;
 884  
     }
 885  
 
 886  
     public String toString() {
 887  0
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
 888  
             .append("actionRequestId", actionRequestId)
 889  
             .append("actionRequested", actionRequested)
 890  
             .append("documentId", documentId)
 891  
             .append("status", status)
 892  
             .append("responsibilityId", responsibilityId)
 893  
             .append("groupId", groupId)
 894  
             .append("recipientTypeCd", recipientTypeCd)
 895  
             .append("priority", priority)
 896  
             .append("routeLevel", routeLevel)
 897  
             .append("actionTakenId", actionTakenId)
 898  
             .append("docVersion", docVersion)
 899  
             .append("createDate", createDate)
 900  
             .append("responsibilityDesc", responsibilityDesc)
 901  
             .append("annotation", annotation)
 902  
             .append("jrfVerNbr", jrfVerNbr)
 903  
             .append("principalId", principalId)
 904  
             .append("forceAction", forceAction)
 905  
             .append("parentActionRequestId", parentActionRequestId)
 906  
             .append("qualifiedRoleName", qualifiedRoleName)
 907  
             .append("roleName", roleName)
 908  
             .append("qualifiedRoleNameLabel", qualifiedRoleNameLabel)
 909  
             .append("displayStatus", displayStatus)
 910  
             .append("ruleBaseValuesId", ruleBaseValuesId)
 911  
             .append("delegationType", delegationType)
 912  
             .append("approvePolicy", approvePolicy)
 913  
             .append("childrenRequests", childrenRequests == null ? null : childrenRequests.size())
 914  
             .append("actionTaken", actionTaken)
 915  
             .append("currentIndicator", currentIndicator)
 916  
             .append("createDateString", createDateString)
 917  
             .append("nodeInstance", nodeInstance).toString();
 918  
     }
 919  
 
 920  
         public String getRequestLabel() {
 921  0
                 return this.requestLabel;
 922  
         }
 923  
 
 924  
         public void setRequestLabel(String requestLabel) {
 925  0
                 this.requestLabel = requestLabel;
 926  0
         }
 927  
 
 928  
     public String getGroupName() {
 929  0
         return KimApiServiceLocator.getIdentityManagementService().getGroup(this.groupId).getName();
 930  
     }
 931  
 
 932  
         /**
 933  
          * @return the resolveResponsibility
 934  
          */
 935  
         public boolean getResolveResponsibility() {
 936  0
                 return this.resolveResponsibility;
 937  
         }
 938  
 
 939  
         /**
 940  
          * @param resolveResponsibility the resolveResponsibility to set
 941  
          */
 942  
         public void setResolveResponsibility(boolean resolveResponsibility) {
 943  0
                 this.resolveResponsibility = resolveResponsibility;
 944  0
         }
 945  
 
 946  
         public DocumentRouteHeaderValue getRouteHeader() {
 947  0
                 if (this.routeHeader == null && this.documentId != null) {
 948  0
                         this.routeHeader = KEWServiceLocator.getRouteHeaderService().getRouteHeader(this.documentId);
 949  
                 }
 950  0
                 return this.routeHeader;
 951  
         }
 952  
 
 953  
         public void setRouteHeader(DocumentRouteHeaderValue routeHeader) {
 954  0
                 this.routeHeader = routeHeader;
 955  0
         }
 956  
     
 957  
 }