Added getProperties() method to let others access the properties
underlying this database mapping.
This commit is contained in:
parent
93e6af7799
commit
5a6f044c40
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,7 @@ import com.workingdogs.village.*;
|
||||||
* relational database table. Basically it consists of a set of JavaScript property-to-
|
* relational database table. Basically it consists of a set of JavaScript property-to-
|
||||||
* Database row bindings which are represented by instances of the Relation class.
|
* Database row bindings which are represented by instances of the Relation class.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public final class DbMapping implements Updatable {
|
public final class DbMapping implements Updatable {
|
||||||
|
|
||||||
// DbMappings belong to an application
|
// DbMappings belong to an application
|
||||||
|
@ -684,6 +684,10 @@ public final class DbMapping implements Updatable {
|
||||||
public DbMapping getParentMapping () {
|
public DbMapping getParentMapping () {
|
||||||
return parentMapping;
|
return parentMapping;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public SystemProperties getProperties () {
|
||||||
|
return props;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue