2 * ================================================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ================================================================================
21 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2
22 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
23 // Any modifications to this file will be lost upon recompilation of the source schema.
24 // Generated on: 2016.06.07 at 02:07:29 PM EDT
28 package org.openecomp.portalsdk.analytics.xmlobj;
30 import javax.xml.bind.annotation.XmlAccessType;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlAttribute;
33 import javax.xml.bind.annotation.XmlElement;
34 import javax.xml.bind.annotation.XmlType;
38 * <p>Java class for DataSourceType complex type.
40 * <p>The following schema fragment specifies the expected content contained within this class.
43 * <complexType name="DataSourceType">
45 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
47 * <element name="tableName" type="{http://www.w3.org/2001/XMLSchema}string"/>
48 * <element name="tablePK" type="{http://www.w3.org/2001/XMLSchema}string"/>
49 * <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string"/>
50 * <element name="refTableId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
51 * <element name="refDefinition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
52 * <element ref="{}comment" minOccurs="0"/>
53 * <element name="dataColumnList" type="{}DataColumnList"/>
55 * <attribute name="tableId" type="{http://www.w3.org/2001/XMLSchema}string" />
57 * </complexContent>
63 @XmlAccessorType(XmlAccessType.FIELD)
64 @XmlType(name = "DataSourceType", propOrder = {
73 public class DataSourceType {
75 @XmlElement(required = true)
76 protected String tableName;
77 @XmlElement(required = true)
78 protected String tablePK;
79 @XmlElement(required = true)
80 protected String displayName;
81 protected String refTableId;
82 protected String refDefinition;
83 protected String comment;
84 @XmlElement(required = true)
85 protected DataColumnList dataColumnList;
86 @XmlAttribute(name = "tableId")
87 protected String tableId;
90 * Gets the value of the tableName property.
97 public String getTableName() {
102 * Sets the value of the tableName property.
109 public void setTableName(String value) {
110 this.tableName = value;
114 * Gets the value of the tablePK property.
121 public String getTablePK() {
126 * Sets the value of the tablePK property.
133 public void setTablePK(String value) {
134 this.tablePK = value;
138 * Gets the value of the displayName property.
145 public String getDisplayName() {
150 * Sets the value of the displayName property.
157 public void setDisplayName(String value) {
158 this.displayName = value;
162 * Gets the value of the refTableId property.
169 public String getRefTableId() {
174 * Sets the value of the refTableId property.
181 public void setRefTableId(String value) {
182 this.refTableId = value;
186 * Gets the value of the refDefinition property.
193 public String getRefDefinition() {
194 return refDefinition;
198 * Sets the value of the refDefinition property.
205 public void setRefDefinition(String value) {
206 this.refDefinition = value;
210 * Gets the value of the comment property.
217 public String getComment() {
222 * Sets the value of the comment property.
229 public void setComment(String value) {
230 this.comment = value;
234 * Gets the value of the dataColumnList property.
238 * {@link DataColumnList }
241 public DataColumnList getDataColumnList() {
242 return dataColumnList;
246 * Sets the value of the dataColumnList property.
250 * {@link DataColumnList }
253 public void setDataColumnList(DataColumnList value) {
254 this.dataColumnList = value;
258 * Gets the value of the tableId property.
265 public String getTableId() {
270 * Sets the value of the tableId property.
277 public void setTableId(String value) {
278 this.tableId = value;