com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation.DataFoundation Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 codbex or an codbex affiliate company and contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: 2022 codbex or an codbex affiliate company and contributors
* SPDX-License-Identifier: EPL-2.0
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.11.26 at 10:54:28 AM EET
//
package com.codbex.kronos.parser.hdbcalculationview.ndb.bimodeldatafoundation;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* A data foundation serves as basis for the mapping of logical objects to physical tables. It contains tableProxies,
* which link to physical data base tables. You can define joins between these tables and in additions specify
* more semantics like which column of the table represents the client column.
* Constraints:
* 1. no loops are allowed among the joins
* 2. joins are only allowed between compatible data types
* 3. Each table referred to in a join must be contained in a tableProxy element
* 4. Attributes having key="true" also need to have displayAttribute=false
* 5. join type = 'textTable' if and only if text column is filled (should)
*
*
* Java class for DataFoundation complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataFoundation">
* <complexContent>
* <extension base="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}BIResource">
* <sequence>
* <element name="tableProxies" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}TableProxies"/>
* <element name="joins" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}Joins" minOccurs="0"/>
* <element name="layout" type="{http://www.sap.com/ndb/BiModelDataFoundation.ecore}Layout" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataFoundation", propOrder = {
"tableProxies",
"joins",
"layout"
})
public class DataFoundation
extends BIResource {
/** The table proxies. */
@XmlElement(required = true)
protected TableProxies tableProxies;
/** The joins. */
protected Joins joins;
/** The layout. */
protected Layout layout;
/**
* Gets the value of the tableProxies property.
*
* @return possible object is
* {@link TableProxies }
*/
public TableProxies getTableProxies() {
return tableProxies;
}
/**
* Sets the value of the tableProxies property.
*
* @param value allowed object is
* {@link TableProxies }
*/
public void setTableProxies(TableProxies value) {
this.tableProxies = value;
}
/**
* Gets the value of the joins property.
*
* @return possible object is
* {@link Joins }
*/
public Joins getJoins() {
return joins;
}
/**
* Sets the value of the joins property.
*
* @param value allowed object is
* {@link Joins }
*/
public void setJoins(Joins value) {
this.joins = value;
}
/**
* Gets the value of the layout property.
*
* @return possible object is
* {@link Layout }
*/
public Layout getLayout() {
return layout;
}
/**
* Sets the value of the layout property.
*
* @param value allowed object is
* {@link Layout }
*/
public void setLayout(Layout value) {
this.layout = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy