Coverage Report - org.kuali.rice.kew.actiontaken.ActionTakenValue
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionTakenValue
0%
0/74
0%
0/20
1.3
 
 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.actiontaken;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.hibernate.annotations.Fetch;
 21  
 import org.hibernate.annotations.FetchMode;
 22  
 import org.hibernate.annotations.GenericGenerator;
 23  
 import org.hibernate.annotations.Parameter;
 24  
 import org.kuali.rice.core.framework.persistence.jpa.OrmUtils;
 25  
 import org.kuali.rice.core.util.RiceConstants;
 26  
 import org.kuali.rice.kew.actionrequest.ActionRequestValue;
 27  
 import org.kuali.rice.kew.actionrequest.KimGroupRecipient;
 28  
 import org.kuali.rice.kew.actionrequest.KimPrincipalRecipient;
 29  
 import org.kuali.rice.kew.actionrequest.Recipient;
 30  
 import org.kuali.rice.kew.actionrequest.service.ActionRequestService;
 31  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 32  
 import org.kuali.rice.kew.util.CodeTranslator;
 33  
 import org.kuali.rice.kew.util.KEWConstants;
 34  
 import org.kuali.rice.kim.bo.Group;
 35  
 import org.kuali.rice.kim.bo.entity.KimPrincipal;
 36  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 37  
 
 38  
 import javax.persistence.*;
 39  
 import java.io.Serializable;
 40  
 import java.sql.Timestamp;
 41  
 import java.util.ArrayList;
 42  
 import java.util.Collection;
 43  
 
 44  
 
 45  
 /**
 46  
  * Model object mapped to ojb for representing actions taken on documents by
 47  
  * users.
 48  
  *
 49  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 50  
  */
 51  
 @Entity
 52  
 //@Sequence(name="KREW_ACTN_TKN_S", property="actionTakenId")
 53  
 @Table(name="KREW_ACTN_TKN_T")
 54  0
 public class ActionTakenValue implements Serializable {
 55  
 
 56  
     /**
 57  
          *
 58  
          */
 59  
         private static final long serialVersionUID = -81505450567067594L;
 60  
         @Id
 61  
         @GeneratedValue(generator="KREW_ACTN_TKN_S")
 62  
         @GenericGenerator(name="KREW_ACTN_TKN_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={
 63  
                         @Parameter(name="sequence_name",value="KREW_ACTN_TKN_S"),
 64  
                         @Parameter(name="value_column",value="id")
 65  
         })
 66  
         @Column(name="ACTN_TKN_ID")
 67  
     private Long actionTakenId;
 68  
     @Column(name="DOC_HDR_ID")//,insertable=false, updatable=false)
 69  
         private Long routeHeaderId;
 70  
     @Column(name="ACTN_CD")
 71  
         private String actionTaken;
 72  
         @Column(name="ACTN_DT")
 73  
         private Timestamp actionDate;
 74  0
     @Column(name="ANNOTN")
 75  
     private String annotation = "";
 76  
     @Column(name="DOC_VER_NBR")
 77  
         private Integer docVersion;
 78  
     @Version
 79  
         @Column(name="VER_NBR")
 80  
         private Integer lockVerNbr;
 81  
     @Column(name="PRNCPL_ID")
 82  
         private String principalId;
 83  
     @Column(name="DLGTR_PRNCPL_ID")
 84  
         private String delegatorPrincipalId;
 85  
     @Column(name="DLGTR_GRP_ID")
 86  
         private String delegatorGroupId;
 87  
     //@ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST})
 88  
     //@JoinColumn(name="DOC_HDR_ID")
 89  
     //private DocumentRouteHeaderValue routeHeader;
 90  
     @OneToMany(fetch=FetchType.EAGER, mappedBy="actionTaken")
 91  
     @Fetch(value = FetchMode.SELECT)
 92  
         private Collection<ActionRequestValue> actionRequests;
 93  0
     @Column(name="CUR_IND")
 94  
     private Boolean currentIndicator = Boolean.TRUE;
 95  
     @Transient
 96  
     private String actionDateString;
 97  
 
 98  
     public KimPrincipal getPrincipal() {
 99  0
             return getPrincipalForId( principalId );
 100  
     }
 101  
     
 102  
         //@PrePersist
 103  
         public void beforeInsert(){
 104  0
                 OrmUtils.populateAutoIncValue(this, KEWServiceLocator.getEntityManagerFactory().createEntityManager());                
 105  0
         }
 106  
 
 107  
     public String getPrincipalDisplayName() {
 108  
             // TODO this stinks to have to have a dependency on UserSession here
 109  0
             return KEWServiceLocator.getIdentityHelperService().getPerson(getPrincipalId()).getName();
 110  
     }
 111  
 
 112  
     public KimPrincipal getDelegatorPrincipal() {
 113  0
             return getPrincipalForId(delegatorPrincipalId);
 114  
     }
 115  
 
 116  
     public Group getDelegatorGroup()
 117  
     {
 118  0
             return KIMServiceLocator.getIdentityManagementService()
 119  
                     .getGroup(String.valueOf(delegatorGroupId));
 120  
     }
 121  
 
 122  
     public void setDelegator(Recipient recipient) {
 123  0
         if (recipient instanceof KimPrincipalRecipient) {
 124  0
             setDelegatorPrincipalId(((KimPrincipalRecipient)recipient).getPrincipalId());
 125  0
         } else if (recipient instanceof KimGroupRecipient) {
 126  0
             setDelegatorGroupId(((KimGroupRecipient)recipient).getGroup().getGroupId());
 127  
         } else {
 128  0
             setDelegatorPrincipalId(null);
 129  0
             setDelegatorGroupId(null);
 130  
         }
 131  0
     }
 132  
 
 133  
     public boolean isForDelegator() {
 134  0
         return getDelegatorPrincipalId() != null || getDelegatorGroupId() != null;
 135  
     }
 136  
 
 137  
     public String getDelegatorDisplayName() {
 138  0
         if (! isForDelegator()) {
 139  0
             return "";
 140  
         }
 141  0
         if (getDelegatorPrincipalId() != null) {
 142  
                 // TODO this stinks to have to have a dependency on UserSession here
 143  0
                 return KEWServiceLocator.getIdentityHelperService().getPerson(this.getDelegatorPrincipalId()).getName();
 144  
         } else {
 145  0
             return getDelegatorGroup().getGroupName();
 146  
       }
 147  
     }
 148  
     
 149  
     private KimPrincipal getPrincipalForId(String principalId) {
 150  0
             KimPrincipal principal = null;
 151  
             
 152  0
             if (!StringUtils.isBlank(principalId)) {
 153  0
                     principal = KEWServiceLocator.getIdentityHelperService().getPrincipal(principalId);
 154  
             }
 155  
             
 156  0
             return principal;
 157  
     }
 158  
 
 159  
     public String getActionTakenLabel() {
 160  0
         return CodeTranslator.getActionTakenLabel(actionTaken);
 161  
     }
 162  
 
 163  
     public Collection<ActionRequestValue> getActionRequests() {
 164  0
         if (actionRequests == null) {
 165  0
             setActionRequests(new ArrayList<ActionRequestValue>());
 166  
         }
 167  0
         return actionRequests;
 168  
     }
 169  
 
 170  
     public void setActionRequests(Collection<ActionRequestValue> actionRequests) {
 171  0
         this.actionRequests = actionRequests;
 172  0
     }
 173  
 
 174  
     //public DocumentRouteHeaderValue getRouteHeader() {
 175  
     //    return routeHeader;
 176  
     //}
 177  
 
 178  
     //public void setRouteHeader(DocumentRouteHeaderValue routeHeader) {
 179  
     //    this.routeHeader = routeHeader;
 180  
     //}
 181  
 
 182  
     public Timestamp getActionDate() {
 183  0
         return actionDate;
 184  
     }
 185  
 
 186  
 
 187  
     public void setActionDate(Timestamp actionDate) {
 188  0
         this.actionDate = actionDate;
 189  0
     }
 190  
 
 191  
 
 192  
     public String getActionTaken() {
 193  0
         return actionTaken;
 194  
     }
 195  
 
 196  
 
 197  
     public void setActionTaken(String actionTaken) {
 198  0
         this.actionTaken = actionTaken;
 199  0
     }
 200  
 
 201  
 
 202  
     public Long getActionTakenId() {
 203  0
         return actionTakenId;
 204  
     }
 205  
 
 206  
     public void setActionTakenId(Long actionTakenId) {
 207  0
         this.actionTakenId = actionTakenId;
 208  0
     }
 209  
 
 210  
     public String getAnnotation() {
 211  0
         return annotation;
 212  
     }
 213  
 
 214  
     public void setAnnotation(String annotation) {
 215  0
         this.annotation = annotation;
 216  0
     }
 217  
 
 218  
     public String getDelegatorPrincipalId() {
 219  0
         return delegatorPrincipalId;
 220  
     }
 221  
 
 222  
     public void setDelegatorPrincipalId(String delegatorPrincipalId) {
 223  0
         this.delegatorPrincipalId = delegatorPrincipalId;
 224  0
     }
 225  
 
 226  
     public String getDelegatorGroupId() {
 227  0
         return delegatorGroupId;
 228  
     }
 229  
     public void setDelegatorGroupId(String delegatorGroupId) {
 230  0
         this.delegatorGroupId = delegatorGroupId;
 231  0
     }
 232  
     public Integer getDocVersion() {
 233  0
         return docVersion;
 234  
     }
 235  
 
 236  
     public void setDocVersion(Integer docVersion) {
 237  0
         this.docVersion = docVersion;
 238  0
     }
 239  
 
 240  
     public Integer getLockVerNbr() {
 241  0
         return lockVerNbr;
 242  
     }
 243  
 
 244  
     public void setLockVerNbr(Integer lockVerNbr) {
 245  0
         this.lockVerNbr = lockVerNbr;
 246  0
     }
 247  
 
 248  
     public Long getRouteHeaderId() {
 249  
 
 250  0
             return routeHeaderId;
 251  
     }
 252  
 
 253  
     public void setRouteHeaderId(Long routeHeaderId) {
 254  0
         this.routeHeaderId = routeHeaderId;
 255  0
     }
 256  
 
 257  
     public String getPrincipalId() {
 258  0
             return principalId;
 259  
     }
 260  
     
 261  
     public void setPrincipalId(String principalId) {
 262  0
             this.principalId = principalId;
 263  0
     }
 264  
 
 265  
     public Boolean getCurrentIndicator() {
 266  0
         return currentIndicator;
 267  
     }
 268  
 
 269  
     public void setCurrentIndicator(Boolean currentIndicator) {
 270  0
         this.currentIndicator = currentIndicator;
 271  0
     }
 272  
 
 273  
     public Collection getRootActionRequests() {
 274  0
         return getActionRequestService().getRootRequests(getActionRequests());
 275  
     }
 276  
 
 277  
     private ActionRequestService getActionRequestService() {
 278  0
         return (ActionRequestService) KEWServiceLocator.getService(KEWServiceLocator.ACTION_REQUEST_SRV);
 279  
     }
 280  
 
 281  
     public String getActionDateString() {
 282  0
         if(actionDateString == null || actionDateString.trim().equals("")){
 283  0
             return RiceConstants.getDefaultDateFormat().format(getActionDate());
 284  
         } else {
 285  0
             return actionDateString;
 286  
         }
 287  
     }
 288  
     public void setActionDateString(String actionDateString) {
 289  0
         this.actionDateString = actionDateString;
 290  0
     }
 291  
 
 292  
     public boolean isApproval() {
 293  0
             return KEWConstants.ACTION_TAKEN_APPROVED_CD.equals(getActionTaken());
 294  
     }
 295  
 
 296  
     public boolean isCompletion() {
 297  0
             return KEWConstants.ACTION_TAKEN_COMPLETED_CD.equals(getActionTaken());
 298  
     }
 299  
 }