/* * * SchemaCrawler * http://sourceforge.net/projects/schemacrawler * Copyright (c) 2000-2013, 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.crawl; import java.util.ArrayList; import java.util.List; import schemacrawler.schema.Procedure; import schemacrawler.schema.ProcedureColumn; import schemacrawler.schema.ProcedureReturnType; import schemacrawler.schema.RoutineType; import schemacrawler.schema.Schema; /** * Represents a database procedure. Created from metadata returned by a * JDBC call. * * @author Sualeh Fatehi */ final class MutableProcedure extends MutableRoutine implements Procedure { private static final long serialVersionUID = 3906925686089134130L; private ProcedureReturnType returnType; private final NamedObjectList<MutableProcedureColumn> columns = new NamedObjectList<>(); MutableProcedure(final Schema schema, final String name) { super(schema, name); // Default values returnType = ProcedureReturnType.unknown; } /** * {@inheritDoc} * * @see schemacrawler.schema.Procedure#getColumn(java.lang.String) */ @Override public MutableProcedureColumn getColumn(final String name) { return columns.lookup(this, name); } /** * {@inheritDoc} * * @see Procedure#getColumns() */ @Override public List<ProcedureColumn> getColumns() { return new ArrayList<ProcedureColumn>(columns.values()); } /** * {@inheritDoc} * * @see Procedure#getReturnType() */ @Override public ProcedureReturnType getReturnType() { return returnType; } @Override public RoutineType getRoutineType() { return RoutineType.procedure; } void addColumn(final MutableProcedureColumn column) { columns.add(column); } void setReturnType(final ProcedureReturnType returnType) { if (returnType == null) { throw new IllegalArgumentException("Null procedure return type"); } this.returnType = returnType; } }