
com.hpe.nv.analysis.dtos.reports.metrics.Subtransaction 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.reports.metrics;
import java.util.Hashtable;
public class Subtransaction {
public class StreamDetails {
public int streamNumber;
public String srcAddress;
public String dstAddress;
public int srcPort;
public int dstPort;
public StreamDetails() {}
public int getStreamNumber() {
return streamNumber;
}
public void setStreamNumber(int streamNumber) {
this.streamNumber = streamNumber;
}
public String getSrcAddress() {
return srcAddress;
}
public void setSrcAddress(String srcAddress) {
this.srcAddress = srcAddress;
}
public String getDstAddress() {
return dstAddress;
}
public void setDstAddress(String dstAddress) {
this.dstAddress = dstAddress;
}
public int getSrcPort() {
return srcPort;
}
public void setSrcPort(int srcPort) {
this.srcPort = srcPort;
}
public int getDstPort() {
return dstPort;
}
public void setDstPort(int dstPort) {
this.dstPort = dstPort;
}
}
public String name;
public double averageResponseTime;
public int instances;
public int totalResponses = 0;
public StreamDetails streamDetails;
public Hashtable errors = new Hashtable();
public Subtransaction() {}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getAverageResponseTime() {
return averageResponseTime;
}
public void setAverageResponseTime(double averageResponseTime) {
this.averageResponseTime = averageResponseTime;
}
public int getInstances() {
return instances;
}
public void setInstances(int instances) {
this.instances = instances;
}
public int getTotalResponses() {
return totalResponses;
}
public void setTotalResponses(int totalResponses) {
this.totalResponses = totalResponses;
}
public StreamDetails getStreamDetails() {
return streamDetails;
}
public void setStreamDetails(StreamDetails streamDetails) {
this.streamDetails = streamDetails;
}
public Hashtable getErrors() {
return errors;
}
public void setErrors(Hashtable errors) {
this.errors = errors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy