X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=validation.git;a=blobdiff_plain;f=ui%2Fsrc%2Fmain%2Fjava%2Forg%2Fakraino%2Fvalidation%2Fui%2Fclient%2Fnexus%2Fresources%2FValidationNexusTestResult.java;fp=ui%2Fsrc%2Fmain%2Fjava%2Forg%2Fakraino%2Fvalidation%2Fui%2Fclient%2Fnexus%2Fresources%2FValidationNexusTestResult.java;h=0000000000000000000000000000000000000000;hp=59a3592d96ea3f5866ea990f4af56d295ff28955;hb=147ecf7bf79ea9967a121d0038103151a38ebef2;hpb=e6b82a7ccd840c8b089ae4d5e69930fd0dd5ef35 diff --git a/ui/src/main/java/org/akraino/validation/ui/client/nexus/resources/ValidationNexusTestResult.java b/ui/src/main/java/org/akraino/validation/ui/client/nexus/resources/ValidationNexusTestResult.java deleted file mode 100644 index 59a3592..0000000 --- a/ui/src/main/java/org/akraino/validation/ui/client/nexus/resources/ValidationNexusTestResult.java +++ /dev/null @@ -1,136 +0,0 @@ -/* - * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may - * not use this file except in compliance with the License. You may obtain - * a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - * implied. See the License for the specific language governing - * permissions and limitations under the License. - */ -package org.akraino.validation.ui.client.nexus.resources; - -import java.util.List; - -public class ValidationNexusTestResult { - - private int resultId; - - private String blueprintName; - - private String version; - - private String silo; - - private Boolean allLayers; - - private Boolean optional; - - private boolean result; - - private String dateOfStorage; - - private String timestamp; - - private String submissionId; - - private List wRobotNexusTestResults; - - public ValidationNexusTestResult() { - - } - - public Integer getResultId() { - return this.resultId; - } - - public void setResultId(Integer resultId) { - this.resultId = resultId; - } - - public String getBlueprintName() { - return this.blueprintName; - } - - public void setBlueprintName(String blueprintName) { - this.blueprintName = blueprintName; - } - - public String getVersion() { - return this.version; - } - - public void setVersion(String version) { - this.version = version; - } - - public String getSilo() { - return this.silo; - } - - public void setSilo(String silo) { - this.silo = silo; - } - - public Boolean getAllLayers() { - return this.allLayers; - } - - public void setAllLayers(Boolean allLayers) { - this.allLayers = allLayers; - } - - public Boolean getOptional() { - return this.optional; - } - - public void setOptional(Boolean optional) { - this.optional = optional; - } - - public boolean getResult() { - return this.result; - } - - public void setResult(boolean result) { - this.result = result; - } - - public String getDateOfStorage() { - return this.dateOfStorage; - } - - public void setDateOfStorage(String dateOfStorage) { - this.dateOfStorage = dateOfStorage; - } - - public String getTimestamp() { - return this.timestamp; - } - - public void setTimestamp(String timestamp) { - this.timestamp = timestamp; - } - - public String getSubmissionId() { - return this.submissionId; - } - - public void setSubmissionId(String submissionId) { - this.submissionId = submissionId; - } - - public List getwRobotNexusTestResults() { - return this.wRobotNexusTestResults; - } - - public void setwRobotNexusTestResults(List wRobotNexusTestResults) { - this.wRobotNexusTestResults = wRobotNexusTestResults; - } - -}