Home | History | Annotate | Download | only in entity

Lines Matching defs:links

131     public final List<String> links;
145 * @param links A list of links to resource files for the test run, or null if there aren't any.
151 List<Long> testCaseIds, List<String> links, long coveredLineCount,
162 this.links = links == null ? new ArrayList<String>() : links;
180 * @param links A list of links to resource files for the test run, or null if there aren't any.
184 List<Long> testCaseIds, List<String> links) {
186 failCount, testCaseIds, links, 0, 0);
207 if (this.links != null && this.links.size() > 0) {
208 testRunEntity.setUnindexedProperty(LOG_LINKS, this.links);
237 List<String> links = null;
245 links = (List<String>) e.getProperty(LOG_LINKS);
248 testBuildId, hostName, passCount, failCount, testCaseIds, links,
270 if (this.links != null && this.links.size() > 0) {
271 List<JsonElement> links = new ArrayList<>();
272 for (String rawUrl : this.links) {
279 links.add(new Gson().toJsonTree(logInfo));
281 if (links.size() > 0) {
282 json.add(LOG_LINKS, new Gson().toJsonTree(links));