Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/MappingFile.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/MappingFile.java14
1 files changed, 1 insertions, 13 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/MappingFile.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/MappingFile.java
index e3fe80986b..46224dc512 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/MappingFile.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/MappingFile.java
@@ -93,7 +93,7 @@ public interface MappingFile
* Common interface for the root of a mapping file.
*/
interface Root
- extends JpaStructureNode, PersistentTypeContainer, AccessReference
+ extends JpaStructureNode, PersistentTypeContainer, AccessReference, SchemaReference
{
/**
* covariant override
@@ -101,18 +101,6 @@ public interface MappingFile
MappingFile getParent();
/**
- * Return the specified catalog if present, otherwise return the default
- * catalog.
- */
- String getCatalog();
-
- /**
- * Return the specified schema if present, otherwise return the default
- * schema.
- */
- String getSchema();
-
- /**
* Return the metadata defined within the mapping file
* <em>for the persistence unit</em>.
* Return <code>null</code> if none exists.

Back to the top