Class TableSourceImpl
- java.lang.Object
-
- org.hibernate.boot.model.source.internal.hbm.AbstractHbmSourceNode
-
- org.hibernate.boot.model.source.internal.hbm.TableSourceImpl
-
- All Implemented Interfaces:
TableSource,TableSpecificationSource
public class TableSourceImpl extends AbstractHbmSourceNode implements TableSource
Models a table mapping source.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCheckConstraint()StringgetComment()StringgetExplicitCatalogName()Obtain the supplied catalog nameStringgetExplicitSchemaName()Obtain the supplied schema nameStringgetExplicitTableName()Obtain the supplied table name.StringgetRowId()-
Methods inherited from class org.hibernate.boot.model.source.internal.hbm.AbstractHbmSourceNode
mappingRoot, metadataBuildingContext, origin, sourceMappingDocument
-
-
-
-
Method Detail
-
getExplicitCatalogName
public String getExplicitCatalogName()
Description copied from interface:TableSpecificationSourceObtain the supplied catalog name- Specified by:
getExplicitCatalogNamein interfaceTableSpecificationSource- Returns:
- The catalog name. If
null, the binder will apply the default.
-
getExplicitSchemaName
public String getExplicitSchemaName()
Description copied from interface:TableSpecificationSourceObtain the supplied schema name- Specified by:
getExplicitSchemaNamein interfaceTableSpecificationSource- Returns:
- The schema name. If
null, the binder will apply the default.
-
getExplicitTableName
public String getExplicitTableName()
Description copied from interface:TableSourceObtain the supplied table name.- Specified by:
getExplicitTableNamein interfaceTableSource- Returns:
- The table name, or
nullis no name specified.
-
getRowId
public String getRowId()
- Specified by:
getRowIdin interfaceTableSource
-
getComment
public String getComment()
- Specified by:
getCommentin interfaceTableSpecificationSource
-
getCheckConstraint
public String getCheckConstraint()
- Specified by:
getCheckConstraintin interfaceTableSource
-
-