package com.newrelic.apm.enterprise.bmc; import javax.xml.bind.annotation.*; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="imname" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="componentId" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "imname", "componentId" }) @XmlRootElement(name = "QueryComponent") public class QueryComponent { @XmlElement(required = true, nillable = true) protected String imname; @XmlElement(required = true, nillable = true) protected String componentId; /** * Gets the value of the imname property. * * @return * possible object is * {@link String } * */ public String getImname() { return imname; } /** * Sets the value of the imname property. * * @param value * allowed object is * {@link String } * */ public void setImname(String value) { this.imname = value; } /** * Gets the value of the componentId property. * * @return * possible object is * {@link String } * */ public String getComponentId() { return componentId; } /** * Sets the value of the componentId property. * * @param value * allowed object is * {@link String } * */ public void setComponentId(String value) { this.componentId = value; } }