From 09b58e1832480e9529124ae422f040028546daff Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 15 Feb 2017 14:59:20 -0500 Subject: Initial commit for OpenECOMP SDN-C adaptors Change-Id: I8d42e44d15fd85aee5b00d27e45da6751dda02b9 Signed-off-by: Dan Timoney --- .../aai/inventory/v8/IncludeNodeFilter.java | 74 ++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/IncludeNodeFilter.java (limited to 'aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/IncludeNodeFilter.java') diff --git a/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/IncludeNodeFilter.java b/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/IncludeNodeFilter.java new file mode 100644 index 0000000..aaf5197 --- /dev/null +++ b/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/IncludeNodeFilter.java @@ -0,0 +1,74 @@ +// +// 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.14 at 01:05:25 PM 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="include-node-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "includeNodeType" +}) +@XmlRootElement(name = "include-node-filter") +public class IncludeNodeFilter + implements AAIDatum +{ + + @XmlElement(name = "include-node-type") + protected String includeNodeType; + + /** + * Gets the value of the includeNodeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIncludeNodeType() { + return includeNodeType; + } + + /** + * Sets the value of the includeNodeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIncludeNodeType(String value) { + this.includeNodeType = value; + } + +} -- cgit 1.2.3-korg