| 1 | package com.jsql.model.accessible.vendor.postgres; | |
| 2 | ||
| 3 | import org.apache.commons.lang3.StringUtils; | |
| 4 | ||
| 5 | import java.io.Serializable; | |
| 6 | ||
| 7 | public class LargeObject implements Serializable { | |
| 8 | ||
| 9 | private String fromPath = StringUtils.EMPTY; | |
| 10 | private String toText = StringUtils.EMPTY; | |
| 11 | private String fromText = StringUtils.EMPTY; | |
| 12 | private String toFile = StringUtils.EMPTY; | |
| 13 | ||
| 14 | public String getFromPath() { | |
| 15 |
1
1. getFromPath : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/LargeObject::getFromPath → NO_COVERAGE |
return this.fromPath; |
| 16 | } | |
| 17 | ||
| 18 | public void setFromPath(String fromPath) { | |
| 19 | this.fromPath = fromPath; | |
| 20 | } | |
| 21 | ||
| 22 | public String getToText() { | |
| 23 |
1
1. getToText : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/LargeObject::getToText → NO_COVERAGE |
return this.toText; |
| 24 | } | |
| 25 | ||
| 26 | public void setToText(String toText) { | |
| 27 | this.toText = toText; | |
| 28 | } | |
| 29 | ||
| 30 | public String getFromText() { | |
| 31 |
1
1. getFromText : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/LargeObject::getFromText → NO_COVERAGE |
return this.fromText; |
| 32 | } | |
| 33 | ||
| 34 | public void setFromText(String fromText) { | |
| 35 | this.fromText = fromText; | |
| 36 | } | |
| 37 | ||
| 38 | public String getToFile() { | |
| 39 |
1
1. getToFile : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/LargeObject::getToFile → NO_COVERAGE |
return this.toFile; |
| 40 | } | |
| 41 | ||
| 42 | public void setToFile(String toFile) { | |
| 43 | this.toFile = toFile; | |
| 44 | } | |
| 45 | } | |
Mutations | ||
| 15 |
1.1 |
|
| 23 |
1.1 |
|
| 31 |
1.1 |
|
| 39 |
1.1 |