
com.hpe.nv.analysis.dtos.document.ExportableResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hpe-nv-java-api Show documentation
Show all versions of hpe-nv-java-api Show documentation
This Java library lets you call the NV API in your automatic tests (for example, your Selenium tests).
You can use this API instead of using the NV Test Manager user interface.
The newest version!
/*************************************************************************
(c) Copyright [2016] Hewlett Packard Enterprise Development LP
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 com.hpe.nv.analysis.dtos.document;
import java.util.ArrayList;
import java.util.List;
public class ExportableResult {
public ArrayList transactionSummaries;
public ArrayList transactionPreviews;
public ArrayList transactionReports;
public ExportableResult(List summaries, List previews, List transactions) {
transactionSummaries = (ArrayList) summaries;
transactionPreviews = (ArrayList) previews;
transactionReports = (ArrayList) transactions;
}
public ExportableResult() {}
public ArrayList getTransactionSummaries() {
return transactionSummaries;
}
public void setTransactionSummaries(ArrayList transactionSummaries) {
this.transactionSummaries = transactionSummaries;
}
public ArrayList getTransactionPreviews() {
return transactionPreviews;
}
public void setTransactionPreviews(ArrayList transactionPreviews) {
this.transactionPreviews = transactionPreviews;
}
public ArrayList getTransactionReports() {
return transactionReports;
}
public void setTransactionReports(ArrayList transactionReports) {
this.transactionReports = transactionReports;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy