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

opensrp / opensrp-server-core / #193

17 Oct 2024 10:04AM UTC coverage: 77.377% (-0.2%) from 77.619%
#193

push

github

web-flow
Merge pull request #636 from opensrp/sanitize-spaces-from-productName

sanitize whitespaces from productName

7 of 7 new or added lines in 3 files covered. (100.0%)

27 existing lines in 3 files now uncovered.

8277 of 10697 relevant lines covered (77.38%)

0.77 hits per line

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

77.78
/src/main/java/org/opensrp/queue/PlanEvaluatorMessage.java
1
package org.opensrp.queue;
2

3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import lombok.Getter;
5
import lombok.Setter;
6
import lombok.NoArgsConstructor;
7
import lombok.AllArgsConstructor;
8
import org.smartregister.domain.Jurisdiction;
9
import org.smartregister.pathevaluator.TriggerType;
10

11
import java.io.Serializable;
12

13
@Getter
UNCOV
14
@Setter
×
UNCOV
15
@NoArgsConstructor
×
16
@AllArgsConstructor
1✔
17
public class PlanEvaluatorMessage implements Serializable {
18

19
        private static final long serialVersionUID = -1138446817700416884L;
20

21
        @JsonProperty
22
        private String planIdentifier;
1✔
23

24
        @JsonProperty
25
        private TriggerType triggerType;
1✔
26

27
        @JsonProperty
28
        private Jurisdiction jurisdiction;
1✔
29
        
30
        @JsonProperty
31
        private String username;
1✔
32

33
        @Override
34
        public String toString() {
35
                String result = "PlanIdentifier : " + getPlanIdentifier() + ", TriggerType : " + getTriggerType() + ", Jurisdiction Code : " + getJurisdiction();
1✔
36
                return result;
1✔
37
        }
38
}
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