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"/> * <element name="statusSet" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="componentStatus" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "imname", "componentId", "statusSet", "componentStatus", "comment" }) @XmlRootElement(name = "SetManualStatus") public class SetManualStatus { @XmlElement(required = true, nillable = true) protected String imname; @XmlElement(required = true, nillable = true) protected String componentId; @XmlElement(required = true, type = Integer.class, nillable = true) protected Integer statusSet; @XmlElement(required = true, nillable = true) protected String componentStatus; @XmlElement(required = true, nillable = true) protected String comment; /** * 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; } /** * Gets the value of the statusSet property. * * @return * possible object is * {@link Integer } * */ public Integer getStatusSet() { return statusSet; } /** * Sets the value of the statusSet property. * * @param value * allowed object is * {@link Integer } * */ public void setStatusSet(Integer value) { this.statusSet = value; } /** * Gets the value of the componentStatus property. * * @return * possible object is * {@link String } * */ public String getComponentStatus() { return componentStatus; } /** * Sets the value of the componentStatus property. * * @param value * allowed object is * {@link String } * */ public void setComponentStatus(String value) { this.componentStatus = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } }