/* * * SchemaCrawler * http://sourceforge.net/projects/schemacrawler * Copyright (c) 2000-2010, Sualeh Fatehi. * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * */ package schemacrawler.build; import schemacrawler.schema.CheckConstraint; import schemacrawler.schema.DatabaseObject; /** * Represents a table constraint. */ final class CheckConstraintMetadata extends BaseDependantObjectMetadata implements CheckConstraint { public static final class CheckConstraintBuilder extends BaseDependantObjectBuilder { private boolean deferrable; private boolean initiallyDeferred; private String definition; public CheckConstraintBuilder(final DatabaseObject parent, final String name) { super(parent, name); } public CheckConstraintMetadata build() { return new CheckConstraintMetadata(this); } public String getDefinition() { return definition; } public boolean isDeferrable() { return deferrable; } public boolean isInitiallyDeferred() { return initiallyDeferred; } public void setDeferrable(final boolean deferrable) { this.deferrable = deferrable; } public void setDefinition(final String definition) { this.definition = definition; } public void setInitiallyDeferred(final boolean initiallyDeferred) { this.initiallyDeferred = initiallyDeferred; } } private static final long serialVersionUID = 1155277343302693656L; private final boolean deferrable; private final boolean initiallyDeferred; private final String definition; private CheckConstraintMetadata(final CheckConstraintBuilder builder) { super(builder); deferrable = builder.deferrable; initiallyDeferred = builder.initiallyDeferred; definition = builder.definition; } /** * {@inheritDoc} * * @see schemacrawler.schema.CheckConstraint#getDefinition() */ public String getDefinition() { return definition; } /** * {@inheritDoc} * * @see schemacrawler.schema.CheckConstraint#isDeferrable() */ public boolean isDeferrable() { return deferrable; } /** * {@inheritDoc} * * @see schemacrawler.schema.CheckConstraint#isInitiallyDeferred() */ public boolean isInitiallyDeferred() { return initiallyDeferred; } }