Spaces:
Build error
Build error
File size: 12,178 Bytes
9373c61 5cfe5c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
package com.dalab.policyengine.dto;
import java.time.Instant;
import java.util.List;
import java.util.Map;
import java.util.UUID;
/**
* DTO for returning policy draft information including workflow status and audit trail.
* Contains comprehensive information for UI display and workflow management.
*/
public class PolicyDraftOutputDTO {
private UUID id;
private String name;
private String description;
private String status;
private Integer version;
private UUID basePolicyId;
private String conditionLogic;
private List<Map<String, Object>> rulesDefinition;
private Map<String, Object> actions;
private String changeSummary;
private String justification;
private String expectedImpact;
private Instant targetImplementationDate;
private String priority;
private String category;
private List<String> tags;
private List<UUID> stakeholders;
private Map<String, Object> approvalMetadata;
private List<Map<String, Object>> reviewComments;
// Audit trail information
private Instant createdAt;
private Instant updatedAt;
private UUID createdByUserId;
private UUID updatedByUserId;
private Instant submittedAt;
private UUID submittedByUserId;
private Instant approvedAt;
private UUID approvedByUserId;
private Instant rejectedAt;
private UUID rejectedByUserId;
private Instant publishedAt;
private UUID publishedByUserId;
// Enhanced workflow information
private WorkflowStatusDTO workflowStatus;
private List<WorkflowActionDTO> availableActions;
// Constructors
public PolicyDraftOutputDTO() {}
public PolicyDraftOutputDTO(UUID id, String name, String status) {
this.id = id;
this.name = name;
this.status = status;
}
// Getters and Setters
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
public UUID getBasePolicyId() {
return basePolicyId;
}
public void setBasePolicyId(UUID basePolicyId) {
this.basePolicyId = basePolicyId;
}
public String getConditionLogic() {
return conditionLogic;
}
public void setConditionLogic(String conditionLogic) {
this.conditionLogic = conditionLogic;
}
public List<Map<String, Object>> getRulesDefinition() {
return rulesDefinition;
}
public void setRulesDefinition(List<Map<String, Object>> rulesDefinition) {
this.rulesDefinition = rulesDefinition;
}
public Map<String, Object> getActions() {
return actions;
}
public void setActions(Map<String, Object> actions) {
this.actions = actions;
}
public String getChangeSummary() {
return changeSummary;
}
public void setChangeSummary(String changeSummary) {
this.changeSummary = changeSummary;
}
public String getJustification() {
return justification;
}
public void setJustification(String justification) {
this.justification = justification;
}
public String getExpectedImpact() {
return expectedImpact;
}
public void setExpectedImpact(String expectedImpact) {
this.expectedImpact = expectedImpact;
}
public Instant getTargetImplementationDate() {
return targetImplementationDate;
}
public void setTargetImplementationDate(Instant targetImplementationDate) {
this.targetImplementationDate = targetImplementationDate;
}
public String getPriority() {
return priority;
}
public void setPriority(String priority) {
this.priority = priority;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public List<String> getTags() {
return tags;
}
public void setTags(List<String> tags) {
this.tags = tags;
}
public List<UUID> getStakeholders() {
return stakeholders;
}
public void setStakeholders(List<UUID> stakeholders) {
this.stakeholders = stakeholders;
}
public Map<String, Object> getApprovalMetadata() {
return approvalMetadata;
}
public void setApprovalMetadata(Map<String, Object> approvalMetadata) {
this.approvalMetadata = approvalMetadata;
}
public List<Map<String, Object>> getReviewComments() {
return reviewComments;
}
public void setReviewComments(List<Map<String, Object>> reviewComments) {
this.reviewComments = reviewComments;
}
public Instant getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Instant createdAt) {
this.createdAt = createdAt;
}
public Instant getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(Instant updatedAt) {
this.updatedAt = updatedAt;
}
public UUID getCreatedByUserId() {
return createdByUserId;
}
public void setCreatedByUserId(UUID createdByUserId) {
this.createdByUserId = createdByUserId;
}
public UUID getUpdatedByUserId() {
return updatedByUserId;
}
public void setUpdatedByUserId(UUID updatedByUserId) {
this.updatedByUserId = updatedByUserId;
}
public Instant getSubmittedAt() {
return submittedAt;
}
public void setSubmittedAt(Instant submittedAt) {
this.submittedAt = submittedAt;
}
public UUID getSubmittedByUserId() {
return submittedByUserId;
}
public void setSubmittedByUserId(UUID submittedByUserId) {
this.submittedByUserId = submittedByUserId;
}
public Instant getApprovedAt() {
return approvedAt;
}
public void setApprovedAt(Instant approvedAt) {
this.approvedAt = approvedAt;
}
public UUID getApprovedByUserId() {
return approvedByUserId;
}
public void setApprovedByUserId(UUID approvedByUserId) {
this.approvedByUserId = approvedByUserId;
}
public Instant getRejectedAt() {
return rejectedAt;
}
public void setRejectedAt(Instant rejectedAt) {
this.rejectedAt = rejectedAt;
}
public UUID getRejectedByUserId() {
return rejectedByUserId;
}
public void setRejectedByUserId(UUID rejectedByUserId) {
this.rejectedByUserId = rejectedByUserId;
}
public Instant getPublishedAt() {
return publishedAt;
}
public void setPublishedAt(Instant publishedAt) {
this.publishedAt = publishedAt;
}
public UUID getPublishedByUserId() {
return publishedByUserId;
}
public void setPublishedByUserId(UUID publishedByUserId) {
this.publishedByUserId = publishedByUserId;
}
public WorkflowStatusDTO getWorkflowStatus() {
return workflowStatus;
}
public void setWorkflowStatus(WorkflowStatusDTO workflowStatus) {
this.workflowStatus = workflowStatus;
}
public List<WorkflowActionDTO> getAvailableActions() {
return availableActions;
}
public void setAvailableActions(List<WorkflowActionDTO> availableActions) {
this.availableActions = availableActions;
}
/**
* Nested DTO for workflow status information.
*/
public static class WorkflowStatusDTO {
private String currentStage;
private String statusDescription;
private List<String> nextPossibleStates;
private boolean canEdit;
private boolean canSubmit;
private boolean canApprove;
private boolean canReject;
private boolean canPublish;
private String stageColor; // For UI status indicators
private Integer daysInCurrentStatus;
// Constructors, getters, and setters
public WorkflowStatusDTO() {}
public String getCurrentStage() { return currentStage; }
public void setCurrentStage(String currentStage) { this.currentStage = currentStage; }
public String getStatusDescription() { return statusDescription; }
public void setStatusDescription(String statusDescription) { this.statusDescription = statusDescription; }
public List<String> getNextPossibleStates() { return nextPossibleStates; }
public void setNextPossibleStates(List<String> nextPossibleStates) { this.nextPossibleStates = nextPossibleStates; }
public boolean isCanEdit() { return canEdit; }
public void setCanEdit(boolean canEdit) { this.canEdit = canEdit; }
public boolean isCanSubmit() { return canSubmit; }
public void setCanSubmit(boolean canSubmit) { this.canSubmit = canSubmit; }
public boolean isCanApprove() { return canApprove; }
public void setCanApprove(boolean canApprove) { this.canApprove = canApprove; }
public boolean isCanReject() { return canReject; }
public void setCanReject(boolean canReject) { this.canReject = canReject; }
public boolean isCanPublish() { return canPublish; }
public void setCanPublish(boolean canPublish) { this.canPublish = canPublish; }
public String getStageColor() { return stageColor; }
public void setStageColor(String stageColor) { this.stageColor = stageColor; }
public Integer getDaysInCurrentStatus() { return daysInCurrentStatus; }
public void setDaysInCurrentStatus(Integer daysInCurrentStatus) { this.daysInCurrentStatus = daysInCurrentStatus; }
}
/**
* Nested DTO for available workflow actions.
*/
public static class WorkflowActionDTO {
private String actionType;
private String actionLabel;
private String actionDescription;
private boolean requiresComment;
private String confirmationMessage;
private String buttonStyle; // For UI styling
// Constructors, getters, and setters
public WorkflowActionDTO() {}
public WorkflowActionDTO(String actionType, String actionLabel) {
this.actionType = actionType;
this.actionLabel = actionLabel;
}
public String getActionType() { return actionType; }
public void setActionType(String actionType) { this.actionType = actionType; }
public String getActionLabel() { return actionLabel; }
public void setActionLabel(String actionLabel) { this.actionLabel = actionLabel; }
public String getActionDescription() { return actionDescription; }
public void setActionDescription(String actionDescription) { this.actionDescription = actionDescription; }
public boolean isRequiresComment() { return requiresComment; }
public void setRequiresComment(boolean requiresComment) { this.requiresComment = requiresComment; }
public String getConfirmationMessage() { return confirmationMessage; }
public void setConfirmationMessage(String confirmationMessage) { this.confirmationMessage = confirmationMessage; }
public String getButtonStyle() { return buttonStyle; }
public void setButtonStyle(String buttonStyle) { this.buttonStyle = buttonStyle; }
}
} |