aboutsummaryrefslogtreecommitdiffstats
path: root/features/ccsdk-base-http/pom.xml
blob: daa286316392dce4fb3854405fea8d2227f50e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.onap.ccsdk.parent</groupId>
		<artifactId>single-feature-parent</artifactId>
		<version>1.5.6</version>
		<relativePath/>
	</parent>

	<groupId>org.onap.ccsdk.sli.adaptors</groupId>
	<artifactId>ccsdk-base-http</artifactId>
	<version>0.7.3-SNAPSHOT</version>
	<packaging>feature</packaging>

	<name>ccsdk-sli-adaptors :: base-http :: ${project.artifactId}</name>

	<dependencies>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>base-http-provider</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
</project>
t 01:05:25 PM EST // package org.openecomp.aai.inventory.v8; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import org.openecomp.sdnc.sli.aai.data.AAIDatum; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;sequence&gt; * &lt;element ref="{http://org.openecomp.aai.inventory/v8}vserver" maxOccurs="unbounded" minOccurs="0"/&gt; * &lt;/sequence&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "vserver" }) @XmlRootElement(name = "vservers") public class Vservers implements AAIDatum { protected List<Vserver> vserver; /** * Gets the value of the vserver property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the vserver property. * * <p> * For example, to add a new item, do as follows: * <pre> * getVserver().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Vserver } * * */ public List<Vserver> getVserver() { if (vserver == null) { vserver = new ArrayList<Vserver>(); } return this.vserver; } }