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="serverName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="changeType" type="{http://blueprint.bmc.com/ImapiTypes}StateChangeType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"imname",
"serverName",
"changeType"
})
@XmlRootElement(name = "RegisterStateChange")
public class RegisterStateChange {
@XmlElement(required = true, nillable = true)
protected String imname;
@XmlElement(required = true, nillable = true)
protected String serverName;
@XmlElement(required = true)
protected StateChangeType changeType;
/**
* 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 serverName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServerName() {
return serverName;
}
/**
* Sets the value of the serverName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServerName(String value) {
this.serverName = value;
}
/**
* Gets the value of the changeType property.
*
* @return
* possible object is
* {@link StateChangeType }
*
*/
public StateChangeType getChangeType() {
return changeType;
}
/**
* Sets the value of the changeType property.
*
* @param value
* allowed object is
* {@link StateChangeType }
*
*/
public void setChangeType(StateChangeType value) {
this.changeType = value;
}
}