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

com.hp.octane.integrations.uft.ufttestresults.schema.ReportNode 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.JacksonXmlElementWrapper;

import java.util.List;

public class ReportNode {

    private String type;

    @JacksonXmlElementWrapper(useWrapping = false)
    @JsonProperty("ReportNode")
    private List nodes;

    @JsonProperty("Data")
    private ReportNodeData data;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public List getNodes() {
        return nodes;
    }

    public void setNodes(List nodes) {
        this.nodes = nodes;
    }

    public ReportNodeData getData() {
        return data;
    }

    public void setData(ReportNodeData data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy