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

com.hp.octane.integrations.uft.ufttestresults.schema.ReportResults Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
package com.hp.octane.integrations.uft.ufttestresults.schema;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;

public class ReportResults {

    @JacksonXmlProperty(isAttribute = true, localName = "version")
    String version;

    @JsonProperty("ReportNode")
    ReportNode reportNode;

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public ReportNode getReportNode() {
        return reportNode;
    }

    public void setReportNode(ReportNode reportNode) {
        this.reportNode = reportNode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy