• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

openmrs / openmrs-core / 27824292656

19 Jun 2026 11:57AM UTC coverage: 63.653% (-0.08%) from 63.728%
27824292656

push

github

web-flow
TRUNK-6429: Addressing post commit review (#6190)

33 of 69 new or added lines in 10 files covered. (47.83%)

43 existing lines in 5 files now uncovered.

23926 of 37588 relevant lines covered (63.65%)

0.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/api/src/main/java/org/openmrs/event/outbox/OutboxExceptionEvent.java
1
/**
2
 * This Source Code Form is subject to the terms of the Mozilla Public License,
3
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
4
 * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
5
 * the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
6
 *
7
 * Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
8
 * graphic logo is a trademark of OpenMRS Inc.
9
 */
10
package org.openmrs.event.outbox;
11

12
/**
13
 * @since 2.9.0
14
 */
15
public class OutboxExceptionEvent {
16
        
17
        private static final long serialVersionUID = 1L;
18
        
19
        private OutboxException exception;
20
        
21
        private String outboxItemUuid;
22
        
23
        private boolean pendingRetry;
24
        
25
        private int retryCount;
26
        
NEW
27
        public OutboxExceptionEvent() {
×
NEW
28
        }
×
29
        
NEW
30
        public OutboxExceptionEvent(OutboxException exception) {
×
NEW
31
                this.exception = exception;
×
NEW
32
        }
×
33
        
NEW
34
        public OutboxExceptionEvent(OutboxException exception, String outboxItemUuid) {
×
NEW
35
                this.exception = exception;
×
NEW
36
                this.outboxItemUuid = outboxItemUuid;
×
UNCOV
37
        }
×
38
        
39
        public OutboxException getException() {
NEW
40
                return exception;
×
41
        }
42
        
43
        public void setException(OutboxException exception) {
NEW
44
                this.exception = exception;
×
NEW
45
        }
×
46
        
47
        public String getOutboxItemUuid() {
NEW
48
                return outboxItemUuid;
×
49
        }
50
        
51
        public void setOutboxItemUuid(String outboxItemUuid) {
NEW
52
                this.outboxItemUuid = outboxItemUuid;
×
NEW
53
        }
×
54
        
55
        public boolean isPendingRetry() {
NEW
56
                return pendingRetry;
×
57
        }
58
        
59
        public void setPendingRetry(boolean pendingRetry) {
NEW
60
                this.pendingRetry = pendingRetry;
×
NEW
61
        }
×
62
        
63
        public int getRetryCount() {
NEW
64
                return retryCount;
×
65
        }
66
        
67
        public void setRetryCount(int retryCount) {
NEW
68
                this.retryCount = retryCount;
×
UNCOV
69
        }
×
70
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc