cbd39c3fa77642d9e61309d7300e3b4069d46a7a
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / translog / TransactionLogEntries.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  *
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 //
23 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
24 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
25 // Any modifications to this file will be lost upon recompilation of the source schema. 
26 // Generated on: 2015.03.20 at 09:46:47 AM CDT 
27 //
28
29
30 package org.onap.aai.domain.translog;
31
32 import java.util.ArrayList;
33 import java.util.List;
34
35 import javax.xml.bind.annotation.XmlAccessType;
36 import javax.xml.bind.annotation.XmlAccessorType;
37 import javax.xml.bind.annotation.XmlRootElement;
38 import javax.xml.bind.annotation.XmlType;
39
40
41 /**
42  * <p>Java class for anonymous complex type.
43  * 
44  * <p>The following schema fragment specifies the expected content contained within this class.
45  * 
46  * <pre>
47  * &lt;complexType>
48  *   &lt;complexContent>
49  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
50  *       &lt;sequence>
51  *         &lt;element name="update" minOccurs="0">
52  *           &lt;complexType>
53  *             &lt;complexContent>
54  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
55  *                 &lt;sequence>
56  *                   &lt;element name="update-node-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
57  *                   &lt;element name="update-node-key" maxOccurs="unbounded" minOccurs="0">
58  *                     &lt;complexType>
59  *                       &lt;complexContent>
60  *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
61  *                           &lt;sequence>
62  *                             &lt;element name="key-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
63  *                             &lt;element name="key-value" type="{http://www.w3.org/2001/XMLSchema}string"/>
64  *                             &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
65  *                           &lt;/sequence>
66  *                         &lt;/restriction>
67  *                       &lt;/complexContent>
68  *                     &lt;/complexType>
69  *                   &lt;/element>
70  *                   &lt;element name="action" maxOccurs="unbounded" minOccurs="0">
71  *                     &lt;complexType>
72  *                       &lt;complexContent>
73  *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
74  *                           &lt;sequence>
75  *                             &lt;element name="action-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
76  *                             &lt;element name="action-data" maxOccurs="unbounded" minOccurs="0">
77  *                               &lt;complexType>
78  *                                 &lt;complexContent>
79  *                                   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
80  *                                     &lt;sequence>
81  *                                       &lt;element name="property-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
82  *                                       &lt;element name="property-value" type="{http://www.w3.org/2001/XMLSchema}string"/>
83  *                                       &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
84  *                                     &lt;/sequence>
85  *                                   &lt;/restriction>
86  *                                 &lt;/complexContent>
87  *                               &lt;/complexType>
88  *                             &lt;/element>
89  *                             &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
90  *                           &lt;/sequence>
91  *                         &lt;/restriction>
92  *                       &lt;/complexContent>
93  *                     &lt;/complexType>
94  *                   &lt;/element>
95  *                   &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
96  *                 &lt;/sequence>
97  *               &lt;/restriction>
98  *             &lt;/complexContent>
99  *           &lt;/complexType>
100  *         &lt;/element>
101  *         &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
102  *       &lt;/sequence>
103  *     &lt;/restriction>
104  *   &lt;/complexContent>
105  * &lt;/complexType>
106  * </pre>
107  * 
108  * 
109  */
110 @XmlAccessorType(XmlAccessType.FIELD)
111 @XmlType(name = "", propOrder = {
112     "transactionLogEntries"
113 })
114 @XmlRootElement(name = "transaction-log-entries", namespace = "http://org.onap.aai.inventory")
115 public class TransactionLogEntries {
116
117     protected List<TransactionLogEntry> transactionLogEntries;
118    
119     /**
120      * Gets the transaction log entries.
121      *
122      * @return the transaction log entries
123      */
124     public List<TransactionLogEntry> getTransactionLogEntries() {
125         if (transactionLogEntries == null) {
126             transactionLogEntries = new ArrayList<TransactionLogEntry>();
127         }
128         return this.transactionLogEntries;
129     }
130
131
132 }