| 1 | ||
| 2 | package com.jsql.model.injection.vendor.model.yaml; | |
| 3 | ||
| 4 | import org.apache.commons.lang3.StringUtils; | |
| 5 | ||
| 6 | import java.io.Serializable; | |
| 7 | ||
| 8 | public class Configuration implements Serializable { | |
| 9 | ||
| 10 | private String slidingWindow = StringUtils.EMPTY; | |
| 11 | private String limit = StringUtils.EMPTY; | |
| 12 | private String failsafe = StringUtils.EMPTY; | |
| 13 | private String calibrator = StringUtils.EMPTY; | |
| 14 | private String limitBoundary = "0"; | |
| 15 | private String endingComment = StringUtils.EMPTY; | |
| 16 | private Fingerprint fingerprint = new Fingerprint(); | |
| 17 | ||
| 18 | public String getSlidingWindow() { | |
| 19 |
1
1. getSlidingWindow : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Configuration::getSlidingWindow → NO_COVERAGE |
return this.slidingWindow; |
| 20 | } | |
| 21 | ||
| 22 | public void setSlidingWindow(String slidingWindow) { | |
| 23 | this.slidingWindow = slidingWindow; | |
| 24 | } | |
| 25 | ||
| 26 | public String getLimit() { | |
| 27 |
1
1. getLimit : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Configuration::getLimit → NO_COVERAGE |
return this.limit; |
| 28 | } | |
| 29 | ||
| 30 | public void setLimit(String limit) { | |
| 31 | this.limit = limit; | |
| 32 | } | |
| 33 | ||
| 34 | public String getFailsafe() { | |
| 35 |
1
1. getFailsafe : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Configuration::getFailsafe → NO_COVERAGE |
return this.failsafe; |
| 36 | } | |
| 37 | ||
| 38 | public void setFailsafe(String failsafe) { | |
| 39 | this.failsafe = failsafe; | |
| 40 | } | |
| 41 | ||
| 42 | public String getCalibrator() { | |
| 43 |
1
1. getCalibrator : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Configuration::getCalibrator → NO_COVERAGE |
return this.calibrator; |
| 44 | } | |
| 45 | ||
| 46 | public void setCalibrator(String calibrator) { | |
| 47 | this.calibrator = calibrator; | |
| 48 | } | |
| 49 | ||
| 50 | public String getLimitBoundary() { | |
| 51 |
1
1. getLimitBoundary : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Configuration::getLimitBoundary → NO_COVERAGE |
return this.limitBoundary; |
| 52 | } | |
| 53 | ||
| 54 | public void setLimitBoundary(String limitBoundary) { | |
| 55 | this.limitBoundary = limitBoundary; | |
| 56 | } | |
| 57 | ||
| 58 | public String getEndingComment() { | |
| 59 |
1
1. getEndingComment : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Configuration::getEndingComment → NO_COVERAGE |
return this.endingComment; |
| 60 | } | |
| 61 | ||
| 62 | public void setEndingComment(String endingComment) { | |
| 63 | this.endingComment = endingComment; | |
| 64 | } | |
| 65 | ||
| 66 | public Fingerprint getFingerprint() { | |
| 67 |
1
1. getFingerprint : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Configuration::getFingerprint → NO_COVERAGE |
return this.fingerprint; |
| 68 | } | |
| 69 | ||
| 70 | public void setFingerprint(Fingerprint fingerprint) { | |
| 71 | this.fingerprint = fingerprint; | |
| 72 | } | |
| 73 | } | |
Mutations | ||
| 19 |
1.1 |
|
| 27 |
1.1 |
|
| 35 |
1.1 |
|
| 43 |
1.1 |
|
| 51 |
1.1 |
|
| 59 |
1.1 |
|
| 67 |
1.1 |