| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
package org.kuali.rice.kew.dto; |
| 18 |
|
|
| 19 |
|
import java.io.Serializable; |
| 20 |
|
import java.util.Calendar; |
| 21 |
|
|
| 22 |
|
import org.kuali.rice.kew.util.KEWConstants; |
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
@author |
| 29 |
|
|
|
|
|
| 0% |
Uncovered Elements: 160 (160) |
Complexity: 78 |
Complexity Density: 0.96 |
|
| 30 |
|
public class ActionRequestDTO implements Serializable { |
| 31 |
|
|
| 32 |
|
private final static String ACKNOWLEDGE_REQ = "K"; |
| 33 |
|
private final static String FYI_REQ = "F"; |
| 34 |
|
private final static String APPROVE_REQ = "A"; |
| 35 |
|
private final static String COMPLETE_REQ = "C"; |
| 36 |
|
|
| 37 |
|
static final long serialVersionUID = 1074824814950100121L; |
| 38 |
|
private Long actionRequestId; |
| 39 |
|
private String actionRequested; |
| 40 |
|
private String status; |
| 41 |
|
private Boolean currentIndicator = Boolean.TRUE; |
| 42 |
|
private Calendar dateCreated; |
| 43 |
|
private Long responsibilityId; |
| 44 |
|
private Long routeHeaderId; |
| 45 |
|
private String routeMethodName; |
| 46 |
|
private Integer priority; |
| 47 |
|
private String annotation; |
| 48 |
|
private Long actionTakenId; |
| 49 |
|
private String groupId; |
| 50 |
|
private String recipientTypeCd; |
| 51 |
|
private String approvePolicy; |
| 52 |
|
private String responsibilityDesc; |
| 53 |
|
private Integer routeLevel; |
| 54 |
|
private Integer docVersion; |
| 55 |
|
private String roleName; |
| 56 |
|
private Boolean forceAction; |
| 57 |
|
private String principalId; |
| 58 |
|
private String delegationType; |
| 59 |
|
private Long parentActionRequestId; |
| 60 |
|
private String qualifiedRoleName; |
| 61 |
|
private String qualifiedRoleNameLabel; |
| 62 |
|
private ActionRequestDTO[] childrenRequests; |
| 63 |
|
private ActionTakenDTO actionTaken; |
| 64 |
|
private String nodeName; |
| 65 |
|
private Long nodeInstanceId; |
| 66 |
|
private String requestLabel; |
| 67 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 68 |
0
|
public ActionRequestDTO() {}... |
| 69 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 70 |
0
|
public String getRoleName() {... |
| 71 |
0
|
return roleName; |
| 72 |
|
} |
| 73 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 74 |
0
|
public void setRoleName(String roleName) {... |
| 75 |
0
|
this.roleName = roleName; |
| 76 |
|
} |
| 77 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 78 |
0
|
public String getActionRequested() {... |
| 79 |
0
|
return actionRequested; |
| 80 |
|
} |
| 81 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 82 |
0
|
public Long getActionRequestId() {... |
| 83 |
0
|
return actionRequestId; |
| 84 |
|
} |
| 85 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 86 |
0
|
public Long getActionTakenId() {... |
| 87 |
0
|
return actionTakenId; |
| 88 |
|
} |
| 89 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 90 |
0
|
public String getAnnotation() {... |
| 91 |
0
|
return annotation; |
| 92 |
|
} |
| 93 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 94 |
0
|
public Calendar getDateCreated() {... |
| 95 |
0
|
return dateCreated; |
| 96 |
|
} |
| 97 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 98 |
0
|
public Integer getDocVersion() {... |
| 99 |
0
|
return docVersion; |
| 100 |
|
} |
| 101 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 102 |
0
|
public Integer getPriority() {... |
| 103 |
0
|
return priority; |
| 104 |
|
} |
| 105 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 106 |
0
|
public String getResponsibilityDesc() {... |
| 107 |
0
|
return responsibilityDesc; |
| 108 |
|
} |
| 109 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 110 |
0
|
public Long getResponsibilityId() {... |
| 111 |
0
|
return responsibilityId; |
| 112 |
|
} |
| 113 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 114 |
0
|
public Long getRouteHeaderId() {... |
| 115 |
0
|
return routeHeaderId; |
| 116 |
|
} |
| 117 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 118 |
0
|
public Integer getRouteLevel() {... |
| 119 |
0
|
return routeLevel; |
| 120 |
|
} |
| 121 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 122 |
0
|
public String getRouteMethodName() {... |
| 123 |
0
|
return routeMethodName; |
| 124 |
|
} |
| 125 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 126 |
0
|
public String getStatus() {... |
| 127 |
0
|
return status; |
| 128 |
|
} |
| 129 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 130 |
0
|
public void setStatus(String status) {... |
| 131 |
0
|
this.status = status; |
| 132 |
|
} |
| 133 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 134 |
0
|
public void setRouteMethodName(String routeMethodName) {... |
| 135 |
0
|
this.routeMethodName = routeMethodName; |
| 136 |
|
} |
| 137 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 138 |
0
|
public void setRouteLevel(Integer routeLevel) {... |
| 139 |
0
|
this.routeLevel = routeLevel; |
| 140 |
|
} |
| 141 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 142 |
0
|
public void setRouteHeaderId(Long routeHeaderId) {... |
| 143 |
0
|
this.routeHeaderId = routeHeaderId; |
| 144 |
|
} |
| 145 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 146 |
0
|
public void setResponsibilityId(Long responsibilityId) {... |
| 147 |
0
|
this.responsibilityId = responsibilityId; |
| 148 |
|
} |
| 149 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 150 |
0
|
public void setResponsibilityDesc(String responsibilityDesc) {... |
| 151 |
0
|
this.responsibilityDesc = responsibilityDesc; |
| 152 |
|
} |
| 153 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 154 |
0
|
public void setPriority(Integer priority) {... |
| 155 |
0
|
this.priority = priority; |
| 156 |
|
} |
| 157 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 158 |
0
|
public void setDocVersion(Integer docVersion) {... |
| 159 |
0
|
this.docVersion = docVersion; |
| 160 |
|
} |
| 161 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 162 |
0
|
public void setDateCreated(Calendar dateCreated) {... |
| 163 |
0
|
this.dateCreated = dateCreated; |
| 164 |
|
} |
| 165 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 166 |
0
|
public void setAnnotation(String annotation) {... |
| 167 |
0
|
this.annotation = annotation; |
| 168 |
|
} |
| 169 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 170 |
0
|
public void setActionTakenId(Long actionTakenId) {... |
| 171 |
0
|
this.actionTakenId = actionTakenId; |
| 172 |
|
} |
| 173 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 174 |
0
|
public void setActionRequestId(Long actionRequestId) {... |
| 175 |
0
|
this.actionRequestId = actionRequestId; |
| 176 |
|
} |
| 177 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 178 |
0
|
public void setActionRequested(String actionRequested) {... |
| 179 |
0
|
this.actionRequested = actionRequested; |
| 180 |
|
} |
| 181 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 182 |
0
|
public String getRecipientTypeCd() {... |
| 183 |
0
|
return recipientTypeCd; |
| 184 |
|
} |
| 185 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 186 |
0
|
public void setRecipientTypeCd(String recipientTypeCd) {... |
| 187 |
0
|
this.recipientTypeCd = recipientTypeCd; |
| 188 |
|
} |
| 189 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 190 |
0
|
public String getApprovePolicy() {... |
| 191 |
0
|
return approvePolicy; |
| 192 |
|
} |
| 193 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 194 |
0
|
public void setApprovePolicy(String approvePolicy) {... |
| 195 |
0
|
this.approvePolicy = approvePolicy; |
| 196 |
|
} |
| 197 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 198 |
0
|
public Boolean getForceAction() {... |
| 199 |
0
|
return forceAction; |
| 200 |
|
} |
| 201 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 202 |
0
|
public boolean isNotificationRequest() {... |
| 203 |
0
|
return isAcknowledgeRequest() || isFyiRequest(); |
| 204 |
|
} |
| 205 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 206 |
0
|
public boolean isApprovalRequest() {... |
| 207 |
0
|
return APPROVE_REQ.equals(actionRequested) || COMPLETE_REQ.equals(actionRequested); |
| 208 |
|
} |
| 209 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 210 |
0
|
public Boolean isForceAction() {... |
| 211 |
0
|
return forceAction; |
| 212 |
|
} |
| 213 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 214 |
0
|
public void setForceAction(Boolean forceAction) {... |
| 215 |
0
|
this.forceAction = forceAction; |
| 216 |
|
} |
| 217 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 218 |
0
|
public boolean isAcknowledgeRequest() {... |
| 219 |
0
|
return ACKNOWLEDGE_REQ.equals(actionRequested); |
| 220 |
|
} |
| 221 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 222 |
0
|
public boolean isFyiRequest() {... |
| 223 |
0
|
return FYI_REQ.equals(actionRequested); |
| 224 |
|
} |
| 225 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 226 |
0
|
public boolean isPending() {... |
| 227 |
0
|
return isInitialized() || isActivated(); |
| 228 |
|
} |
| 229 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 230 |
0
|
public boolean isCompleteRequest() {... |
| 231 |
0
|
return KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(actionRequested); |
| 232 |
|
} |
| 233 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 234 |
0
|
public boolean isInitialized() {... |
| 235 |
0
|
return KEWConstants.ACTION_REQUEST_INITIALIZED.equals(status); |
| 236 |
|
} |
| 237 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 238 |
0
|
public boolean isActivated() {... |
| 239 |
0
|
return KEWConstants.ACTION_REQUEST_ACTIVATED.equals(status); |
| 240 |
|
} |
| 241 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 242 |
0
|
public boolean isDone() {... |
| 243 |
0
|
return KEWConstants.ACTION_REQUEST_DONE_STATE.equals(status); |
| 244 |
|
} |
| 245 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 246 |
0
|
public boolean isUserRequest() {... |
| 247 |
0
|
return KEWConstants.ACTION_REQUEST_USER_RECIPIENT_CD.equals(getRecipientTypeCd()); |
| 248 |
|
} |
| 249 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 250 |
0
|
public boolean isGroupRequest() {... |
| 251 |
0
|
return KEWConstants.ACTION_REQUEST_GROUP_RECIPIENT_CD.equals(getRecipientTypeCd()); |
| 252 |
|
} |
| 253 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 254 |
0
|
public boolean isRoleRequest() {... |
| 255 |
0
|
return KEWConstants.ACTION_REQUEST_ROLE_RECIPIENT_CD.equals(getRecipientTypeCd()); |
| 256 |
|
} |
| 257 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 258 |
0
|
public String getPrincipalId() {... |
| 259 |
0
|
return this.principalId; |
| 260 |
|
} |
| 261 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 262 |
0
|
public void setPrincipalId(String principalId) {... |
| 263 |
0
|
this.principalId = principalId; |
| 264 |
|
} |
| 265 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 266 |
0
|
public Boolean getCurrentIndicator() {... |
| 267 |
0
|
return currentIndicator; |
| 268 |
|
} |
| 269 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 270 |
0
|
public void setCurrentIndicator(Boolean currentIndicator) {... |
| 271 |
0
|
this.currentIndicator = currentIndicator; |
| 272 |
|
} |
| 273 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 274 |
0
|
public String getDelegationType() {... |
| 275 |
0
|
return delegationType; |
| 276 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 277 |
0
|
public void setDelegationType(String delegationType) {... |
| 278 |
0
|
this.delegationType = delegationType; |
| 279 |
|
} |
| 280 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 281 |
0
|
public Long getParentActionRequestId() {... |
| 282 |
0
|
return parentActionRequestId; |
| 283 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 284 |
0
|
public void setParentActionRequestId(Long parentActionRequestId) {... |
| 285 |
0
|
this.parentActionRequestId = parentActionRequestId; |
| 286 |
|
} |
| 287 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 288 |
0
|
public String getQualifiedRoleName() {... |
| 289 |
0
|
return qualifiedRoleName; |
| 290 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 291 |
0
|
public void setQualifiedRoleName(String qualifiedRoleName) {... |
| 292 |
0
|
this.qualifiedRoleName = qualifiedRoleName; |
| 293 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 294 |
0
|
public String getQualifiedRoleNameLabel() {... |
| 295 |
0
|
return qualifiedRoleNameLabel; |
| 296 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 297 |
0
|
public void setQualifiedRoleNameLabel(String qualifiedRoleNameLabel) {... |
| 298 |
0
|
this.qualifiedRoleNameLabel = qualifiedRoleNameLabel; |
| 299 |
|
} |
| 300 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 301 |
0
|
public ActionTakenDTO getActionTaken() {... |
| 302 |
0
|
return actionTaken; |
| 303 |
|
} |
| 304 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 305 |
0
|
public void setActionTaken(ActionTakenDTO actionTaken) {... |
| 306 |
0
|
this.actionTaken = actionTaken; |
| 307 |
|
} |
| 308 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 309 |
0
|
public ActionRequestDTO[] getChildrenRequests() {... |
| 310 |
0
|
return childrenRequests; |
| 311 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 312 |
0
|
public void setChildrenRequests(ActionRequestDTO[] childrenRequests) {... |
| 313 |
0
|
this.childrenRequests = childrenRequests; |
| 314 |
|
} |
| 315 |
|
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
| 316 |
0
|
public void addChildRequest(ActionRequestDTO childRequest) {... |
| 317 |
0
|
if (getChildrenRequests() == null) { |
| 318 |
0
|
setChildrenRequests(new ActionRequestDTO[0]); |
| 319 |
|
} |
| 320 |
0
|
ActionRequestDTO[] newChildrenRequests = new ActionRequestDTO[getChildrenRequests().length+1]; |
| 321 |
0
|
System.arraycopy(getChildrenRequests(), 0, newChildrenRequests, 0, getChildrenRequests().length); |
| 322 |
0
|
newChildrenRequests[getChildrenRequests().length] = childRequest; |
| 323 |
0
|
setChildrenRequests(newChildrenRequests); |
| 324 |
|
} |
| 325 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 326 |
0
|
public String getNodeName() {... |
| 327 |
0
|
return nodeName; |
| 328 |
|
} |
| 329 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 330 |
0
|
public void setNodeName(String nodeName) {... |
| 331 |
0
|
this.nodeName = nodeName; |
| 332 |
|
} |
| 333 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 334 |
0
|
public Long getNodeInstanceId() {... |
| 335 |
0
|
return nodeInstanceId; |
| 336 |
|
} |
| 337 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 338 |
0
|
public void setNodeInstanceId(Long nodeInstanceId) {... |
| 339 |
0
|
this.nodeInstanceId = nodeInstanceId; |
| 340 |
|
} |
| 341 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 342 |
0
|
public String getGroupId() {... |
| 343 |
0
|
return this.groupId; |
| 344 |
|
} |
| 345 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 346 |
0
|
public void setGroupId(String groupId) {... |
| 347 |
0
|
this.groupId = groupId; |
| 348 |
|
} |
| 349 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 350 |
0
|
public boolean isAdHocRequest() {... |
| 351 |
0
|
return KEWConstants.ADHOC_REQUEST_RESPONSIBILITY_ID.equals(getResponsibilityId()); |
| 352 |
|
} |
| 353 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 354 |
0
|
public boolean isGeneratedRequest() {... |
| 355 |
0
|
return KEWConstants.MACHINE_GENERATED_RESPONSIBILITY_ID.equals(getResponsibilityId()); |
| 356 |
|
} |
| 357 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 358 |
0
|
public boolean isExceptionRequest() {... |
| 359 |
0
|
return KEWConstants.EXCEPTION_REQUEST_RESPONSIBILITY_ID.equals(getResponsibilityId()); |
| 360 |
|
} |
| 361 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 362 |
0
|
public boolean isRouteModuleRequest() {... |
| 363 |
0
|
return getResponsibilityId().longValue() > 0; |
| 364 |
|
} |
| 365 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 366 |
0
|
public String getRequestLabel() {... |
| 367 |
0
|
return this.requestLabel; |
| 368 |
|
} |
| 369 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 370 |
0
|
public void setRequestLabel(String requestLabel) {... |
| 371 |
0
|
this.requestLabel = requestLabel; |
| 372 |
|
} |
| 373 |
|
|
| 374 |
|
} |