blob: e85b27812e94fb905944a4b87a9a3281449b9baa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.core.context;
import org.eclipse.jpt.common.utility.internal.iterables.ListIterable;
import org.eclipse.jpt.jpa.core.context.JpaContextNode;
/**
* EclipseLink multitenancy
* <p>
* Provisional API: This interface is part of an interim API that is still
* under development and expected to change significantly before reaching
* stability. It is available at this early stage to solicit feedback from
* pioneering adopters on the understanding that any code that uses this API
* will almost certainly be broken (repeatedly) as the API evolves.
*
* @version 3.1
* @since 3.1
*/
public interface EclipseLinkMultitenancy2_3
extends JpaContextNode
{
boolean isMultitenant();
boolean isDefaultMultitenant();
String DEFAULT_MULTITENANT_PROPERTY = "defaultMultitenant"; //$NON-NLS-1$
boolean isSpecifiedMultitenant();
void setSpecifiedMultitenant(boolean isMultitenant);
String SPECIFIED_MULTITENANT_PROPERTY = "specifiedMultitenant"; //$NON-NLS-1$
// ********** type **********
/**
* This is the combination of defaultType and specifiedType.
* If getSpecifiedType() returns null, then return getDefaultType()
*/
EclipseLinkMultitenantType2_3 getType();
EclipseLinkMultitenantType2_3 getSpecifiedType();
void setSpecifiedType(EclipseLinkMultitenantType2_3 type);
String SPECIFIED_TYPE_PROPERTY = "specifiedType"; //$NON-NLS-1$
EclipseLinkMultitenantType2_3 getDefaultType();
String DEFAULT_TYPE_PROPERTY = "defaultType"; //$NON-NLS-1$
EclipseLinkMultitenantType2_3 DEFAULT_TYPE = EclipseLinkMultitenantType2_3.SINGLE_TABLE;
// // ********** include criteria (EclipseLink 2.4+) **********
//
// /**
// * This is the combination of defaultIncludeCriteria and specifiedIncludeCriteria.
// * If getSpecifiedIncludeCriteria() returns null, then return isDefaultIncludeCriteria()
// */
// boolean isIncludeCriteria();
//
// Boolean getSpecifiedIncludeCriteria();
// void setSpecifiedIncludeCriteria(Boolean includeCriteria);
// String SPECIFIED_INCLUDE_CRITERIA_PROPERTY = "specifiedIncludeCriteria"; //$NON-NLS-1$
//
// boolean isDefaultIncludeCriteria();
// String DEFAULT_INCLUDE_CRITERIA_PROPERTY = "defaultIncludeCriteria"; //$NON-NLS-1$
// boolean DEFAULT_INCLUDE_CRITERIA = true;
// ********** tenant discriminator columns **********
/**
* Return the tenant discriminator columns whether specified or default.
*/
ListIterable<? extends ReadOnlyTenantDiscriminatorColumn2_3> getTenantDiscriminatorColumns();
/**
* Return the number of tenant discriminator columns, whether specified and default.
*/
int getTenantDiscriminatorColumnsSize();
// ********** specified tenant discriminator columns **********
/**
* Return a list iterable of the specified tenant discriminator columns.
* This will not be null.
*/
ListIterable<? extends TenantDiscriminatorColumn2_3> getSpecifiedTenantDiscriminatorColumns();
String SPECIFIED_TENANT_DISCRIMINATOR_COLUMNS_LIST = "specifiedTenantDiscriminatorColumns"; //$NON-NLS-1$
/**
* Return the number of specified tenant discriminator columns.
*/
int getSpecifiedTenantDiscriminatorColumnsSize();
/**
* Return whether there are any specified tenant discriminator columns.
*/
boolean hasSpecifiedTenantDiscriminatorColumns();
/**
* Add a specified tenant discriminator column and return the object
* representing it.
*/
TenantDiscriminatorColumn2_3 addSpecifiedTenantDiscriminatorColumn();
/**
* Add a specified tenant discriminator column and return the object
* representing it.
*/
TenantDiscriminatorColumn2_3 addSpecifiedTenantDiscriminatorColumn(int index);
/**
* Remove the specified tenant discriminator column.
*/
void removeSpecifiedTenantDiscriminatorColumn(TenantDiscriminatorColumn2_3 tenantDiscriminatorColumn);
/**
* Remove the specified tenant discriminator column at the index.
*/
void removeSpecifiedTenantDiscriminatorColumn(int index);
/**
* Move the specified tenant discriminator column from the source index to the target index.
*/
void moveSpecifiedTenantDiscriminatorColumn(int targetIndex, int sourceIndex);
// ********** default tenant discriminator columns **********
/**
* Return a list iterable of the default tenant discriminator columns.
* This will not be null. If there are specified tenant discriminator columns
* then there will be no default tenant discriminator columns.
*/
ListIterable<? extends VirtualTenantDiscriminatorColumn2_3> getDefaultTenantDiscriminatorColumns();
String DEFAULT_TENANT_DISCRIMINATOR_COLUMNS_LIST = "defaultTenantDiscriminatorColumns"; //$NON-NLS-1$
/**
* Return the number of default tenant discriminator columns.
*/
int getDefaultTenantDiscriminatorColumnsSize();
/**
* Return whether a TenantDiscriminatorColumn is allowed for this type mapping.
* It is allowed if it is a mapped-superclass, the root entity in the inheritance hierarchy,
* or the inheritance strategy is table-per-class
*/
boolean specifiedTenantDiscriminatorColumnsAllowed();
String SPECIFIED_TENANT_DISCRIMINATOR_COLUMNS_ALLOWED_PROPERTY = "specifiedTenantDiscriminatorColumnsAllowed"; //$NON-NLS-1$
}