org.datanucleus.metadata.ConstraintMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-core Show documentation
Show all versions of datanucleus-core Show documentation
DataNucleus Core provides the primary components of a heterogenous Java persistence solution.
It supports persistence API's being layered on top of the core functionality.
/**********************************************************************
Copyright (c) 2007 Andy Jefferson and others. 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.
Contributors:
...
**********************************************************************/
package org.datanucleus.metadata;
import java.util.ArrayList;
import java.util.List;
import org.datanucleus.util.StringUtils;
/**
* Representation of an ORM constraint.
* This will be extended for indexes, unique keys, and foreign keys.
*/
public class ConstraintMetaData extends MetaData
{
private static final long serialVersionUID = 7230726771198108950L;
/** the constraint name */
protected String name;
/** the constraint table name. Name of the table to which this applies (null implies the enclosing class' table). */
protected String table;
/** The member names for this constraint. */
protected List memberNames = null;
/** The column names for this constraint. */
protected List columnNames = null;
/**
* Default constructor. Set fields using setters before populate().
*/
public ConstraintMetaData()
{
}
/**
* Copy constructor.
* @param acmd Metadata to copy
*/
public ConstraintMetaData(ConstraintMetaData acmd)
{
super(null, acmd);
this.name = acmd.name;
this.table = acmd.table;
if (acmd.memberNames != null)
{
for (String memberName : acmd.memberNames)
{
addMember(memberName);
}
}
if (acmd.columnNames != null)
{
for (String columnName : acmd.columnNames)
{
addColumn(columnName);
}
}
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = StringUtils.isWhitespace(name) ? null : name;
}
public String getTable()
{
return table;
}
public void setTable(String table)
{
this.table = StringUtils.isWhitespace(table) ? null : table;
}
/**
* Add a new member that is part of this constraint.
* @param memberName member name for the field/property
*/
public void addMember(String memberName)
{
if (memberNames == null)
{
memberNames = new ArrayList<>();
}
memberNames.add(memberName);
}
public final String[] getMemberNames()
{
return (memberNames == null) ? null : memberNames.toArray(new String[memberNames.size()]);
}
public int getNumberOfMembers()
{
return memberNames != null ? memberNames.size() : 0;
}
/**
* Add a new column that is part of the constraint.
* @param columnName Name for the column
*/
public void addColumn(String columnName)
{
if (columnNames == null)
{
columnNames = new ArrayList<>();
}
columnNames.add(columnName);
}
public final String[] getColumnNames()
{
return (columnNames == null) ? null : columnNames.toArray(new String[columnNames.size()]);
}
public int getNumberOfColumns()
{
return columnNames != null ? columnNames.size() : 0;
}
}