Stop installing librairies during tests
[parser.git] / verigraph / src / main / java / it / polito / nffg / neo4j / jaxb / Nffg.java
1 /*******************************************************************************
2  * Copyright (c) 2017 Politecnico di Torino and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9
10 package it.polito.nffg.neo4j.jaxb;
11
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18
19
20 /**
21  * <p>Java class for anonymous complex type.
22  * <p>The following schema fragment specifies the expected content contained within this class.
23  * <pre>
24  * &lt;complexType>
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;sequence>
28  *         &lt;element name="endpoints" type="{http://www.example.org/nffg/}epointsType"/>
29  *         &lt;element name="network_functions" type="{http://www.example.org/nffg/}nfunctionsType"/>
30  *         &lt;element name="network_elements" type="{http://www.example.org/nffg/}nelementsType"/>
31  *         &lt;element name="monitoring_parameters" type="{http://www.example.org/nffg/}monParamsType"/>
32  *       &lt;/sequence>
33  *       &lt;attribute name="id" type="{http://www.example.org/nffg/}nffgIdType" />
34  *       &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
35  *     &lt;/restriction>
36  *   &lt;/complexContent>
37  * &lt;/complexType>
38  * </pre>
39  */
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "", propOrder = {
42     "endpoints",
43     "networkFunctions",
44     "networkElements",
45     "monitoringParameters"
46 })
47 @XmlRootElement(name = "nffg")
48 public class Nffg {
49
50     @XmlElement(required = true)
51     protected EpointsType endpoints;
52     @XmlElement(name = "network_functions", required = true)
53     protected NfunctionsType networkFunctions;
54     @XmlElement(name = "network_elements", required = true)
55     protected NelementsType networkElements;
56     @XmlElement(name = "monitoring_parameters", required = true)
57     protected MonParamsType monitoringParameters;
58     @XmlAttribute(name = "id")
59     protected String id;
60     @XmlAttribute(name = "version")
61     protected String version;
62
63     /**
64      * Gets the value of the endpoints property.
65      * @return
66      *     possible object is
67      *     {@link EpointsType }
68      */
69     public EpointsType getEndpoints() {
70         return endpoints;
71     }
72
73     /**
74      * Sets the value of the endpoints property.
75      * @param value
76      *     allowed object is
77      *     {@link EpointsType }
78      */
79     public void setEndpoints(EpointsType value) {
80         this.endpoints = value;
81     }
82
83     /**
84      * Gets the value of the networkFunctions property.
85      * @return
86      *     possible object is
87      *     {@link NfunctionsType }
88      */
89     public NfunctionsType getNetworkFunctions() {
90         return networkFunctions;
91     }
92
93     /**
94      * Sets the value of the networkFunctions property.
95      * @param value
96      *     allowed object is
97      *     {@link NfunctionsType }
98      */
99     public void setNetworkFunctions(NfunctionsType value) {
100         this.networkFunctions = value;
101     }
102
103     /**
104      * Gets the value of the networkElements property.
105      * @return
106      *     possible object is
107      *     {@link NelementsType }
108      */
109     public NelementsType getNetworkElements() {
110         return networkElements;
111     }
112
113     /**
114      * Sets the value of the networkElements property.
115      * @param value
116      *     allowed object is
117      *     {@link NelementsType }
118      */
119     public void setNetworkElements(NelementsType value) {
120         this.networkElements = value;
121     }
122
123     /**
124      * Gets the value of the monitoringParameters property.
125      * @return
126      *     possible object is
127      *     {@link MonParamsType }
128      */
129     public MonParamsType getMonitoringParameters() {
130         return monitoringParameters;
131     }
132
133     /**
134      * Sets the value of the monitoringParameters property.
135      * @param value
136      *     allowed object is
137      *     {@link MonParamsType }
138      */
139     public void setMonitoringParameters(MonParamsType value) {
140         this.monitoringParameters = value;
141     }
142
143     /**
144      * Gets the value of the id property.
145      * @return
146      *     possible object is
147      *     {@link String }
148      */
149     public String getId() {
150         return id;
151     }
152
153     /**
154      * Sets the value of the id property.
155      * @param value
156      *     allowed object is
157      *     {@link String }
158      */
159     public void setId(String value) {
160         this.id = value;
161     }
162
163     /**
164      * Gets the value of the version property.
165      * @return
166      *     possible object is
167      *     {@link String }
168      */
169     public String getVersion() {
170         return version;
171     }
172
173     /**
174      * Sets the value of the version property.
175      * @param value
176      *     allowed object is
177      *     {@link String }
178      */
179     public void setVersion(String value) {
180         this.version = value;
181     }
182
183 }