// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.02.21 at 08:44:52 AM EST // package org.openecomp.aai.inventory.v8; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.openecomp.sdnc.sli.aai.data.AAIDatum; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="source-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sequence-number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="severity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="event-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="entity-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="top-entity-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="entity-link" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "id", "timestamp", "sourceName", "domain", "sequenceNumber", "severity", "eventType", "version", "action", "entityType", "topEntityType", "entityLink", "status" }) @XmlRootElement(name = "notification-event-header") public class NotificationEventHeader implements AAIDatum { protected String id; protected String timestamp; @XmlElement(name = "source-name") protected String sourceName; protected String domain; @XmlElement(name = "sequence-number") protected String sequenceNumber; protected String severity; @XmlElement(name = "event-type") protected String eventType; protected String version; protected String action; @XmlElement(name = "entity-type") protected String entityType; @XmlElement(name = "top-entity-type") protected String topEntityType; @XmlElement(name = "entity-link") protected String entityLink; protected String status; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link String } * */ public String getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link String } * */ public void setTimestamp(String value) { this.timestamp = value; } /** * Gets the value of the sourceName property. * * @return * possible object is * {@link String } * */ public String getSourceName() { return sourceName; } /** * Sets the value of the sourceName property. * * @param value * allowed object is * {@link String } * */ public void setSourceName(String value) { this.sourceName = value; } /** * Gets the value of the domain property. * * @return * possible object is * {@link String } * */ public String getDomain() { return domain; } /** * Sets the value of the domain property. * * @param value * allowed object is * {@link String } * */ public void setDomain(String value) { this.domain = value; } /** * Gets the value of the sequenceNumber property. * * @return * possible object is * {@link String } * */ public String getSequenceNumber() { return sequenceNumber; } /** * Sets the value of the sequenceNumber property. * * @param value * allowed object is * {@link String } * */ public void setSequenceNumber(String value) { this.sequenceNumber = value; } /** * Gets the value of the severity property. * * @return * possible object is * {@link String } * */ public String getSeverity() { return severity; } /** * Sets the value of the severity property. * * @param value * allowed object is * {@link String } * */ public void setSeverity(String value) { this.severity = value; } /** * Gets the value of the eventType property. * * @return * possible object is * {@link String } * */ public String getEventType() { return eventType; } /** * Sets the value of the eventType property. * * @param value * allowed object is * {@link String } * */ public void setEventType(String value) { this.eventType = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the action property. * * @return * possible object is * {@link String } * */ public String getAction() { return action; } /** * Sets the value of the action property. * * @param value * allowed object is * {@link String } * */ public void setAction(String value) { this.action = value; } /** * Gets the value of the entityType property. * * @return * possible object is * {@link String } * */ public String getEntityType() { return entityType; } /** * Sets the value of the entityType property. * * @param value * allowed object is * {@link String } * */ public void setEntityType(String value) { this.entityType = value; } /** * Gets the value of the topEntityType property. * * @return * possible object is * {@link String } * */ public String getTopEntityType() { return topEntityType; } /** * Sets the value of the topEntityType property. * * @param value * allowed object is * {@link String } * */ public void setTopEntityType(String value) { this.topEntityType = value; } /** * Gets the value of the entityLink property. * * @return * possible object is * {@link String } * */ public String getEntityLink() { return entityLink; } /** * Sets the value of the entityLink property. * * @param value * allowed object is * {@link String } * */ public void setEntityLink(String value) { this.entityLink = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } }