All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schemacrawler.crawl.ProcedureReference Maven / Gradle / Ivy

Go to download

SchemaCrawler is an open-source Java API that makes working with database metadata as easy as working with plain old Java objects. SchemaCrawler is also a database schema discovery and comprehension, and schema documentation tool. You can search for database schema objects using regular expressions, and output the schema and data in a readable text format. The output is designed to be diff-ed against other database schemas.

There is a newer version: 16.24.2
Show newest version
package schemacrawler.crawl;


import static java.util.Objects.requireNonNull;

import schemacrawler.schema.Procedure;

class ProcedureReference
  extends DatabaseObjectReference
{

  private static final long serialVersionUID = 5422838457822334919L;

  ProcedureReference(final Procedure procedure)
  {
    super(requireNonNull(procedure, "No procedure provided"),
          new ProcedurePartial(procedure));
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy