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

edu.internet2.middleware.grouper.ddl.DdlVersionable Maven / Gradle / Ivy

There is a newer version: 5.12.2
Show newest version
/**
 * Copyright 2014 Internet2
 *
 * 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.
 */
/*
 * @author mchyzer
 * $Id: DdlVersionable.java,v 1.8 2008-11-13 05:04:03 mchyzer Exp $
 */
package edu.internet2.middleware.grouper.ddl;
 
import edu.internet2.middleware.grouper.ext.org.apache.ddlutils.model.Database;


/**
 * enums which are ddl version need to implement this interface
 */
public interface DdlVersionable {

  /**
   * if this version requires an empty changelog
   * @return true if so
   */
  public boolean requiresEmptyChangelog();
  
  /**
   * get grouper version e.g. x.y.z
   * @return grouper version
   */
  public String getGrouperVersion();

  /**
   * add all foreign keys, views, table / col comments, etc
   * @param ddlVersionBean
   */
  public void addAllForeignKeysViewsEtc(DdlVersionBean ddlVersionBean);

  /**
   * drop all views at the beginning of the script...
   * @param ddlVersionBean
   */
  public void dropAllViews(DdlVersionBean ddlVersionBean);

  /**
   * get the version of this enum
   * @return the version
   */
  public int getVersion();

  /**
   * get the object name of this enum, e.g. if GrouperEnum, the object name is Grouper
   * @return the object name
   */
  public String getObjectName();

  /**
   * 
   * get the table pattern for this dbname (would be nice if there were no overlap,
   * so ext's should not start with grouper, e.g. grouploader_
   * note that underscore is a wildcard which is unfortunate
   * @return the table patter, e.g. "GROUPER%"
   * 
*/ public String getDefaultTablePattern(); /** * an example table name so we can hone in on the exact metadata * @return the table name */ public String[] getSampleTablenames(); /** * check to see if the changes are already made, and then add the changes * to the database object * that should be used to update from the previous version * @param database ddlutils database object * @param ddlVersionBean has references to stuff you need */ public void updateVersionFromPrevious(Database database, DdlVersionBean ddlVersionBean); /** * @return true if the update requires views/keys to be recreated */ public boolean recreateViewsAndForeignKeys(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy