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

de.akquinet.jbosscc.guttenbase.hints.EntityTableCheckerHint Maven / Gradle / Ivy

The newest version!
package de.akquinet.jbosscc.guttenbase.hints;

import de.akquinet.jbosscc.guttenbase.tools.AbstractSequenceUpdateTool;
import de.akquinet.jbosscc.guttenbase.tools.EntityTableChecker;

/**
 * Check if the given table is a "main" table in the sense that it represents an entity. In terms of JPA: the corresponding Java class is
 * annotated with @Entity.
 *
 * 

* © 2012-2034 akquinet tech@spree *

*

*

*

* Hint is used by {@link AbstractSequenceUpdateTool} to look for entity classes, i.e. classes that may use an ID sequence * * @author M. Dahm */ public abstract class EntityTableCheckerHint implements ConnectorHint { @Override public final Class getConnectorHintType() { return EntityTableChecker.class; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy