Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/validation/PersistenceUnitDefaultsValidator.java')
-rwxr-xr-xeclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/validation/PersistenceUnitDefaultsValidator.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/validation/PersistenceUnitDefaultsValidator.java b/eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/validation/PersistenceUnitDefaultsValidator.java
deleted file mode 100755
index f37b651a6..000000000
--- a/eclipselink/org.eclipse.emf.teneo.orm/src/org/eclipse/emf/teneo/jpa/orm/validation/PersistenceUnitDefaultsValidator.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: PersistenceUnitDefaultsValidator.java,v 1.1 2009/07/23 11:16:28 mtaal Exp $
- */
-package org.eclipse.emf.teneo.jpa.orm.validation;
-
-import org.eclipse.emf.teneo.jpa.orm.AccessType;
-import org.eclipse.emf.teneo.jpa.orm.EmptyType;
-import org.eclipse.emf.teneo.jpa.orm.EntityListeners;
-
-/**
- * A sample validator interface for {@link org.eclipse.emf.teneo.jpa.orm.PersistenceUnitDefaults}.
- * This doesn't really do anything, and it's not a real EMF artifact.
- * It was generated by the org.eclipse.emf.examples.generator.validator plug-in to illustrate how EMF's code generator can be extended.
- * This can be disabled with -vmargs -Dorg.eclipse.emf.examples.generator.validator=false.
- */
-public interface PersistenceUnitDefaultsValidator {
- boolean validate();
-
- boolean validateSchema(String value);
- boolean validateCatalog(String value);
- boolean validateAccess(AccessType value);
- boolean validateCascadePersist(EmptyType value);
- boolean validateEntityListeners(EntityListeners value);
-}

Back to the top