Interface ScanOptions
-
public interface ScanOptionsOptions for performing scanning
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancanDetectHibernateMappingFiles()Deprecated.With move to unified schema, this setting is now deprecated and will be removed once support for readinghbm.xmlfiles is fully removed.booleancanDetectUnlistedClassesInNonRoot()Is detection of managed classes from non-root urls allowed? In strict JPA sense, this would always be allowed.booleancanDetectUnlistedClassesInRoot()Is detection of managed classes from root url allowed? In strict JPA sense, this would be controlled by the<exclude-unlisted-classes/>element.
-
-
-
Method Detail
-
canDetectUnlistedClassesInRoot
boolean canDetectUnlistedClassesInRoot()
Is detection of managed classes from root url allowed? In strict JPA sense, this would be controlled by the<exclude-unlisted-classes/>element.- Returns:
- Whether detection of classes from root url is allowed
-
canDetectUnlistedClassesInNonRoot
boolean canDetectUnlistedClassesInNonRoot()
Is detection of managed classes from non-root urls allowed? In strict JPA sense, this would always be allowed.- Returns:
- Whether detection of classes from non-root urls is allowed
-
canDetectHibernateMappingFiles
@Deprecated boolean canDetectHibernateMappingFiles()
Deprecated.With move to unified schema, this setting is now deprecated and will be removed once support for readinghbm.xmlfiles is fully removed.Is detection of Hibernate Mapping files allowed?- Returns:
- Whether detection of Mapping files is allowed.
-
-