Stop installing librairies during tests
[parser.git] / verigraph / src / main / java / it / polito / nffg / neo4j / jaxb / CpType.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.XmlType;
17
18
19 /**
20  * <p>Java class for cpType complex type.
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  * <pre>
23  * &lt;complexType name="cpType">
24  *   &lt;complexContent>
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       &lt;sequence>
27  *         &lt;element name="port" type="{http://www.example.org/nffg/}portType"/>
28  *       &lt;/sequence>
29  *       &lt;attribute name="id" use="required" type="{http://www.example.org/nffg/}cpIdType" />
30  *     &lt;/restriction>
31  *   &lt;/complexContent>
32  * &lt;/complexType>
33  * </pre>
34  */
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "cpType", propOrder = {
37     "port"
38 })
39 public class CpType {
40
41     @XmlElement(required = true)
42     protected PortType port;
43     @XmlAttribute(name = "id", required = true)
44     protected String id;
45
46     /**
47      * Gets the value of the port property.
48      * @return
49      *     possible object is
50      *     {@link PortType }
51      */
52     public PortType getPort() {
53         return port;
54     }
55
56     /**
57      * Sets the value of the port property.
58      * @param value
59      *     allowed object is
60      *     {@link PortType }
61      */
62     public void setPort(PortType value) {
63         this.port = value;
64     }
65
66     /**
67      * Gets the value of the id property.
68      * @return
69      *     possible object is
70      *     {@link String }
71      */
72     public String getId() {
73         return id;
74     }
75
76     /**
77      * Sets the value of the id property.
78      * @param value
79      *     allowed object is
80      *     {@link String }
81      */
82     public void setId(String value) {
83         this.id = value;
84     }
85
86 }