AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / translog / TransactionLogEntry.java
index 843afb2..2ce485b 100644 (file)
@@ -17,6 +17,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.domain.translog;
 
 import javax.xml.bind.annotation.XmlAccessType;
@@ -28,410 +29,396 @@ import javax.xml.bind.annotation.XmlType;
 import org.eclipse.persistence.oxm.annotations.XmlCDATA;
 
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
-               "transactionLogEntryId",
-               "status",
-               "rqstDate",
-               "respDate",
-               "sourceId",
-               "resourceId",
-               "resourceType",
-               "rqstBuf",
-               "respBuf",
-               "notificationPayload",
-               "notificationId",
-               "notificationStatus",
-               "notificationTopic",
-               "notificationEntityLink",
-               "notificationAction"
-})
+@XmlType(
+        name = "",
+        propOrder = {"transactionLogEntryId", "status", "rqstDate", "respDate", "sourceId", "resourceId",
+                "resourceType", "rqstBuf", "respBuf", "notificationPayload", "notificationId", "notificationStatus",
+                "notificationTopic", "notificationEntityLink", "notificationAction"})
 @XmlRootElement(name = "transaction-log-entry", namespace = "http://org.onap.aai.inventory")
 public class TransactionLogEntry {
 
-       @XmlElement(name = "transaction-log-entry-id", required = true)
-       protected String transactionLogEntryId;
-       @XmlElement(name = "status")
-       protected String status;
-       @XmlElement(name = "rqst-date")
-       protected String rqstDate;
-       @XmlElement(name = "resp-date")
-       protected String respDate;
-       @XmlElement(name = "source-id")
-       protected String sourceId;
-       @XmlElement(name = "resource-id")
-       protected String resourceId;
-       @XmlElement(name = "resource-type")
-       protected String resourceType;
-       @XmlElement(name = "rqst-buf")
-       protected String rqstBuf;
-       @XmlElement(name = "resp-buf")
-       protected String respBuf;
-       @XmlElement(name = "notification-payload")
-       protected String notificationPayload;
-       @XmlElement(name = "notification-id")
-       protected String notificationId;
-       @XmlElement(name = "notification-status")
-       protected String notificationStatus;
-       @XmlElement(name = "notification-topic")
-       private String notificationTopic;
-       @XmlElement(name = "notification-entity-link")
-       private String notificationEntityLink;
-       @XmlElement(name = "notification-action")
-       private String notificationAction;
-
-       /**
-        * Gets the value of the transcationLogEntryId property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getTransactionLogEntryId() {
-               return transactionLogEntryId;
-       }
-
-       /**
-        * Sets the value of the transactionLogEntryId property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setTransactionLogEntryId(String value) {
-               this.transactionLogEntryId = 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;
-       }
-
-       /**
-        * Gets the value of the rqstDate property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-
-       public String getRqstDate() {
-               return rqstDate;
-       }
-
-       /**
-        * Sets the value of the rqstDate property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setRqstDate(String value) {
-               this.rqstDate = value;
-       }
-
-
-       /**
-        * Gets the value of the respDate property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-
-       public String getRespDate() {
-               return respDate;
-       }
-
-       /**
-        * Sets the value of the respDate property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setRespDate(String value) {
-               this.respDate = value;
-       }
-       /**
-        * Gets the value of the sourceId property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getSourceId() {
-               return sourceId;
-       }
-
-       /**
-        * Sets the value of the sourceId property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setSourceId(String value) {
-               this.sourceId = value;
-       }
-
-       /**
-        * Gets the value of the resourceId property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getResourceId() {
-               return resourceId;
-       }
-
-       /**
-        * Sets the value of the resourceId property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setResourceId(String value) {
-               this.resourceId = value;
-       }
-
-       /**
-        * Gets the value of the resourceType property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getResourceType() {
-               return resourceType;
-       }
-
-       /**
-        * Sets the value of the resourceType property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setResourceType(String value) {
-               this.resourceType = value;
-       }
-
-       /**
-        * Gets the value of the rqstBuf property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getRqstBuf() {
-               return rqstBuf;
-       }
-
-       /**
-        * Sets the value of the rqstBuf property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       @XmlCDATA
-       public void setRqstBuf(String value) {
-               this.rqstBuf = value;
-       }
-
-       /**
-        * Gets the value of the respBuf property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getrespBuf() {
-               return respBuf;
-       }
-
-       /**
-        * Sets the value of the respBuf property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       @XmlCDATA
-       public void setrespBuf(String value) {
-               this.respBuf = value;
-       }
-
-       /**
-        * Gets the value of the notificationPayload property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getNotificationPayload() {
-               return notificationPayload;
-       }
-
-       /**
-        * Sets the value of the notificationPayload property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       @XmlCDATA
-       public void setNotificationPayload(String value) {
-               this.notificationPayload = value;
-       }
-
-
-       /**
-        * Gets the value of the notificationId property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getNotificationId() {
-               return notificationId;
-       }
-
-       /**
-        * Sets the value of the notificationId property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setNotificationId(String value) {
-               this.notificationId = value;
-       }
-
-       /**
-        * Gets the value of the notificationId property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getNotificationStatus() {
-               return notificationStatus;
-       }
-
-       /**
-        * Sets the value of the notificationId property.
-        * 
-        * @param value
-        *     allowed object is
-        *     {@link String }
-        *     
-        */
-       public void setNotificationStatus(String value) {
-               this.notificationStatus = value;
-       }
-
-       /**
-        * Gets the value of the notificationTopic property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getNotificationTopic() {
-               return notificationTopic;
-       }
-
-       /**
-        * Sets the value of the notificationTopic property.
-        *
-        * @param topic the new notification topic
-        */
-       public void setNotificationTopic(String topic) {
-               this.notificationTopic = topic;
-       }
-
-       /**
-        * Gets the value of the notificationEntityLink property.
-        * 
-        * @return
-        *     possible object is
-        *     {@link String }
-        *     
-        */
-       public String getNotificationEntityLink() {
-               return notificationEntityLink;
-       }
-
-       /**
-        * Sets the value of the notificationEntityLink property.
-        *
-        * @param entityLink the new notification entity link
-        */
-       public void setNotificationEntityLink(String entityLink) {
-               this.notificationEntityLink = entityLink;
-       }
-
-       /**
-        * Sets the value of the notificationAction property.
-        *
-        * @return the notification action
-        */
-       public String getNotificationAction() {
-               return notificationAction;
-       }
-
-       /**
-        * Sets the value of the notificationAction property.
-        *
-        * @param action the new notification action
-        */
-       public void setNotificationAction(String action) {
-               this.notificationAction = action;
-       }
-
+    @XmlElement(name = "transaction-log-entry-id", required = true)
+    protected String transactionLogEntryId;
+    @XmlElement(name = "status")
+    protected String status;
+    @XmlElement(name = "rqst-date")
+    protected String rqstDate;
+    @XmlElement(name = "resp-date")
+    protected String respDate;
+    @XmlElement(name = "source-id")
+    protected String sourceId;
+    @XmlElement(name = "resource-id")
+    protected String resourceId;
+    @XmlElement(name = "resource-type")
+    protected String resourceType;
+    @XmlElement(name = "rqst-buf")
+    protected String rqstBuf;
+    @XmlElement(name = "resp-buf")
+    protected String respBuf;
+    @XmlElement(name = "notification-payload")
+    protected String notificationPayload;
+    @XmlElement(name = "notification-id")
+    protected String notificationId;
+    @XmlElement(name = "notification-status")
+    protected String notificationStatus;
+    @XmlElement(name = "notification-topic")
+    private String notificationTopic;
+    @XmlElement(name = "notification-entity-link")
+    private String notificationEntityLink;
+    @XmlElement(name = "notification-action")
+    private String notificationAction;
+
+    /**
+     * Gets the value of the transcationLogEntryId property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getTransactionLogEntryId() {
+        return transactionLogEntryId;
+    }
+
+    /**
+     * Sets the value of the transactionLogEntryId property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setTransactionLogEntryId(String value) {
+        this.transactionLogEntryId = 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;
+    }
+
+    /**
+     * Gets the value of the rqstDate property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+
+    public String getRqstDate() {
+        return rqstDate;
+    }
+
+    /**
+     * Sets the value of the rqstDate property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setRqstDate(String value) {
+        this.rqstDate = value;
+    }
+
+    /**
+     * Gets the value of the respDate property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+
+    public String getRespDate() {
+        return respDate;
+    }
+
+    /**
+     * Sets the value of the respDate property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setRespDate(String value) {
+        this.respDate = value;
+    }
+
+    /**
+     * Gets the value of the sourceId property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getSourceId() {
+        return sourceId;
+    }
+
+    /**
+     * Sets the value of the sourceId property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setSourceId(String value) {
+        this.sourceId = value;
+    }
+
+    /**
+     * Gets the value of the resourceId property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getResourceId() {
+        return resourceId;
+    }
+
+    /**
+     * Sets the value of the resourceId property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setResourceId(String value) {
+        this.resourceId = value;
+    }
+
+    /**
+     * Gets the value of the resourceType property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getResourceType() {
+        return resourceType;
+    }
+
+    /**
+     * Sets the value of the resourceType property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setResourceType(String value) {
+        this.resourceType = value;
+    }
+
+    /**
+     * Gets the value of the rqstBuf property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getRqstBuf() {
+        return rqstBuf;
+    }
+
+    /**
+     * Sets the value of the rqstBuf property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    @XmlCDATA
+    public void setRqstBuf(String value) {
+        this.rqstBuf = value;
+    }
+
+    /**
+     * Gets the value of the respBuf property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getrespBuf() {
+        return respBuf;
+    }
+
+    /**
+     * Sets the value of the respBuf property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    @XmlCDATA
+    public void setrespBuf(String value) {
+        this.respBuf = value;
+    }
+
+    /**
+     * Gets the value of the notificationPayload property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getNotificationPayload() {
+        return notificationPayload;
+    }
+
+    /**
+     * Sets the value of the notificationPayload property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    @XmlCDATA
+    public void setNotificationPayload(String value) {
+        this.notificationPayload = value;
+    }
+
+    /**
+     * Gets the value of the notificationId property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getNotificationId() {
+        return notificationId;
+    }
+
+    /**
+     * Sets the value of the notificationId property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setNotificationId(String value) {
+        this.notificationId = value;
+    }
+
+    /**
+     * Gets the value of the notificationId property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getNotificationStatus() {
+        return notificationStatus;
+    }
+
+    /**
+     * Sets the value of the notificationId property.
+     * 
+     * @param value
+     *        allowed object is
+     *        {@link String }
+     * 
+     */
+    public void setNotificationStatus(String value) {
+        this.notificationStatus = value;
+    }
+
+    /**
+     * Gets the value of the notificationTopic property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getNotificationTopic() {
+        return notificationTopic;
+    }
+
+    /**
+     * Sets the value of the notificationTopic property.
+     *
+     * @param topic the new notification topic
+     */
+    public void setNotificationTopic(String topic) {
+        this.notificationTopic = topic;
+    }
+
+    /**
+     * Gets the value of the notificationEntityLink property.
+     * 
+     * @return
+     *         possible object is
+     *         {@link String }
+     * 
+     */
+    public String getNotificationEntityLink() {
+        return notificationEntityLink;
+    }
+
+    /**
+     * Sets the value of the notificationEntityLink property.
+     *
+     * @param entityLink the new notification entity link
+     */
+    public void setNotificationEntityLink(String entityLink) {
+        this.notificationEntityLink = entityLink;
+    }
+
+    /**
+     * Sets the value of the notificationAction property.
+     *
+     * @return the notification action
+     */
+    public String getNotificationAction() {
+        return notificationAction;
+    }
+
+    /**
+     * Sets the value of the notificationAction property.
+     *
+     * @param action the new notification action
+     */
+    public void setNotificationAction(String action) {
+        this.notificationAction = action;
+    }
 
 }