All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hpe.nv.analysis.dtos.document.DocumentProperties Maven / Gradle / Ivy

/*************************************************************************
 (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;

public class DocumentProperties {

    public String packetListName;
    public String transactionName;
    public String flowName;
    public long transactionStart;
    public long transactionStartSysTime;
    public long transactionDuration;
    public long networkTime;
    public String status;
    public String description;
    public String transactionId;
    public String flowDescription;

    public DocumentProperties(String packetListName, String transactionName, String flowName,
      long transactionStart, long transactionStartSysTime, long transactionDuration, String status,
      String description, String transactionId, String flowDescription) {
        this.packetListName = packetListName;
        this.transactionName = transactionName;
        this.flowName = flowName;
        this.transactionStart = transactionStart;
        this.transactionStartSysTime = transactionStartSysTime;
        this.transactionDuration = transactionDuration;
        this.status = status;
        this.description = description;
        this.transactionId = transactionId;
        this.flowDescription = flowDescription;
    }

    public DocumentProperties() {}

    public String getPacketListName() {
        return packetListName;
    }

    public void setPacketListName(String packetListName) {
        this.packetListName = packetListName;
    }

    public String getTransactionName() {
        return transactionName;
    }

    public void setTransactionName(String transactionName) {
        this.transactionName = transactionName;
    }

    public String getFlowName() {
        return flowName;
    }

    public void setFlowName(String flowName) {
        this.flowName = flowName;
    }

    public long getTransactionStart() {
        return transactionStart;
    }

    public void setTransactionStart(long transactionStart) {
        this.transactionStart = transactionStart;
    }

    public long getTransactionStartSysTime() {
        return transactionStartSysTime;
    }

    public void setTransactionStartSysTime(long transactionStartSysTime) {
        this.transactionStartSysTime = transactionStartSysTime;
    }

    public long getTransactionDuration() {
        return transactionDuration;
    }

    public void setTransactionDuration(long transactionDuration) {
        this.transactionDuration = transactionDuration;
    }

    public long getNetworkTime() {
        return networkTime;
    }

    public void setNetworkTime(long networkTime) {
        this.networkTime = networkTime;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getTransactionId() {
        return transactionId;
    }

    public void setTransactionId(String transactionId) {
        this.transactionId = transactionId;
    }

    public String getFlowDescription() {
        return flowDescription;
    }

    public void setFlowDescription(String flowDescription) {
        this.flowDescription = flowDescription;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy