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

openmrs / openmrs-core / 27147200794

08 Jun 2026 03:09PM UTC coverage: 63.494% (-10.1%) from 73.596%
27147200794

push

github

web-flow
TRUNK-6516: Provide CDC mechanism with Debezium (#6151)

16 of 78 new or added lines in 8 files covered. (20.51%)

39 existing lines in 3 files now uncovered.

23804 of 37490 relevant lines covered (63.49%)

0.63 hits per line

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

60.0
/api/src/main/java/org/openmrs/event/BaseSessionEvent.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;
11

12
import java.util.Set;
13

14
/**
15
 * See {@link EntityEvent} or {@link AggregatedEntityEvent}.
16
 * 
17
 * @since 2.9.0
18
 */
19
public abstract class BaseSessionEvent extends BaseEvent {
20
        private static final long serialVersionUID = 1L;
21
        
22
        protected String sessionId;
23

24
        /**
25
         * Default constructor for deserialization.
26
         */
27
        public BaseSessionEvent() {
1✔
28
        }
1✔
29

30
        public BaseSessionEvent(Set<String> tags) {
31
                super(tags);
1✔
32
        }
1✔
33
        
34
        public BaseSessionEvent(String sessionId, Set<String> tags) {
NEW
35
                super(tags);
×
NEW
36
                this.sessionId = sessionId;
×
NEW
37
        }
×
38

39
        public String getSessionId() {
NEW
40
                return sessionId;
×
41
        }
42

43
        public void setSessionId(String sessionId) {
44
                this.sessionId = sessionId;
1✔
45
        }
1✔
46
}
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