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

openmrs / openmrs-core / 26773559161

01 Jun 2026 06:21PM UTC coverage: 63.376% (-0.01%) from 63.389%
26773559161

push

github

web-flow
TRUNK-6429: Create application events for service method calls and entity changes (#6084)

272 of 504 new or added lines in 27 files covered. (53.97%)

5 existing lines in 2 files now uncovered.

23598 of 37235 relevant lines covered (63.38%)

0.63 hits per line

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

33.33
/api/src/main/java/org/openmrs/aop/event/VoidServiceEvent.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.aop.event;
11

12
import org.openmrs.event.EntityEvent;
13

14
import java.util.Set;
15

16
/**
17
 * Published by {@link org.openmrs.aop.OpenmrsServiceEventAdvice}
18
 *
19
 * @param <T> the changed entity
20
 *
21
 * @since 2.9.x
22
 */
23
public class VoidServiceEvent<T> extends EntityEvent<T> {
24
        private static final long serialVersionUID = 1L;
25
        
NEW
26
        public VoidServiceEvent() {
×
NEW
27
        }
×
28
        
29
        public VoidServiceEvent(T entity) {
30
                super(entity);
1✔
31
        }
1✔
32

33
        public VoidServiceEvent(T entity, Set<String> tags) {
NEW
34
                super(entity, tags);
×
NEW
35
        }
×
36
}
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