Interface IDirRule
- All Known Implementing Classes:
DirRule
public interface IDirRule
Public view of a directory placement rule for database objects. Exposes only
the information required by project consumers (directory name and whether
objects of this rule are nested under a schema container). Matching details
and override mutation remain implementation concerns of the base layer.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the directory name where matching objects are stored.booleanReturnstrueif objects of this rule are nested under a schema container,falseif they are placed at the top level.
-
Method Details
-
getDirName
String getDirName()Returns the directory name where matching objects are stored. -
isSubElement
boolean isSubElement()Returnstrueif objects of this rule are nested under a schema container,falseif they are placed at the top level.
-