From f2f129f56c057854517394cc5680b02418fece7d Mon Sep 17 00:00:00 2001 From: Rich Tabedzki Date: Wed, 5 Apr 2017 13:15:15 +0000 Subject: [SDNC-5] summary Synchronized source code with 17.07 after cleaning up deprecated code Change-Id: Ieabd58d25bb405ad15ad255e1cf40797e91d937f Signed-off-by: Rich Tabedzki --- .../aai/inventory/v8/NamedQueryElement.java | 326 --------------------- 1 file changed, 326 deletions(-) delete mode 100644 aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/NamedQueryElement.java (limited to 'aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/NamedQueryElement.java') diff --git a/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/NamedQueryElement.java b/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/NamedQueryElement.java deleted file mode 100644 index 0cf4a84..0000000 --- a/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/NamedQueryElement.java +++ /dev/null @@ -1,326 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * openECOMP : SDN-C - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights - * reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============LICENSE_END========================================================= - */ - -// -// 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.03.29 at 11:26:46 AM GMT+00:00 -// - - -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.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="named-query-element-uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="property-collect-list" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="resource-version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="property-limit-desc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="do-not-output" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element ref="{http://org.openecomp.aai.inventory/v8}named-query-elements" minOccurs="0"/>
- *         <element ref="{http://org.openecomp.aai.inventory/v8}related-lookups" minOccurs="0"/>
- *         <element ref="{http://org.openecomp.aai.inventory/v8}property-constraints" minOccurs="0"/>
- *         <element ref="{http://org.openecomp.aai.inventory/v8}relationship-list" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "namedQueryElementUuid", - "propertyCollectList", - "resourceVersion", - "propertyLimitDesc", - "doNotOutput", - "namedQueryElements", - "relatedLookups", - "propertyConstraints", - "relationshipList" -}) -@XmlRootElement(name = "named-query-element") -public class NamedQueryElement - implements AAIDatum -{ - - @XmlElement(name = "named-query-element-uuid", required = true) - protected String namedQueryElementUuid; - @XmlElement(name = "property-collect-list") - protected List propertyCollectList; - @XmlElement(name = "resource-version") - protected String resourceVersion; - @XmlElement(name = "property-limit-desc") - protected String propertyLimitDesc; - @XmlElement(name = "do-not-output") - protected String doNotOutput; - @XmlElement(name = "named-query-elements") - protected NamedQueryElements namedQueryElements; - @XmlElement(name = "related-lookups") - protected RelatedLookups relatedLookups; - @XmlElement(name = "property-constraints") - protected PropertyConstraints propertyConstraints; - @XmlElement(name = "relationship-list") - protected RelationshipList relationshipList; - - /** - * Gets the value of the namedQueryElementUuid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNamedQueryElementUuid() { - return namedQueryElementUuid; - } - - /** - * Sets the value of the namedQueryElementUuid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNamedQueryElementUuid(String value) { - this.namedQueryElementUuid = value; - } - - /** - * Gets the value of the propertyCollectList property. - * - *

- * 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 set method for the propertyCollectList property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPropertyCollectList().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getPropertyCollectList() { - if (propertyCollectList == null) { - propertyCollectList = new ArrayList(); - } - return this.propertyCollectList; - } - - /** - * Gets the value of the resourceVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResourceVersion() { - return resourceVersion; - } - - /** - * Sets the value of the resourceVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResourceVersion(String value) { - this.resourceVersion = value; - } - - /** - * Gets the value of the propertyLimitDesc property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPropertyLimitDesc() { - return propertyLimitDesc; - } - - /** - * Sets the value of the propertyLimitDesc property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPropertyLimitDesc(String value) { - this.propertyLimitDesc = value; - } - - /** - * Gets the value of the doNotOutput property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDoNotOutput() { - return doNotOutput; - } - - /** - * Sets the value of the doNotOutput property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDoNotOutput(String value) { - this.doNotOutput = value; - } - - /** - * Gets the value of the namedQueryElements property. - * - * @return - * possible object is - * {@link NamedQueryElements } - * - */ - public NamedQueryElements getNamedQueryElements() { - return namedQueryElements; - } - - /** - * Sets the value of the namedQueryElements property. - * - * @param value - * allowed object is - * {@link NamedQueryElements } - * - */ - public void setNamedQueryElements(NamedQueryElements value) { - this.namedQueryElements = value; - } - - /** - * Gets the value of the relatedLookups property. - * - * @return - * possible object is - * {@link RelatedLookups } - * - */ - public RelatedLookups getRelatedLookups() { - return relatedLookups; - } - - /** - * Sets the value of the relatedLookups property. - * - * @param value - * allowed object is - * {@link RelatedLookups } - * - */ - public void setRelatedLookups(RelatedLookups value) { - this.relatedLookups = value; - } - - /** - * Gets the value of the propertyConstraints property. - * - * @return - * possible object is - * {@link PropertyConstraints } - * - */ - public PropertyConstraints getPropertyConstraints() { - return propertyConstraints; - } - - /** - * Sets the value of the propertyConstraints property. - * - * @param value - * allowed object is - * {@link PropertyConstraints } - * - */ - public void setPropertyConstraints(PropertyConstraints value) { - this.propertyConstraints = value; - } - - /** - * Gets the value of the relationshipList property. - * - * @return - * possible object is - * {@link RelationshipList } - * - */ - public RelationshipList getRelationshipList() { - return relationshipList; - } - - /** - * Sets the value of the relationshipList property. - * - * @param value - * allowed object is - * {@link RelationshipList } - * - */ - public void setRelationshipList(RelationshipList value) { - this.relationshipList = value; - } - -} -- cgit 1.2.3-korg