[Major] refactored how transactions are opened

Now the ElementMapHandler is the central object and clients do not use
access DAOs or the PersistenceHandler anymore. This is now transparent.
This commit is contained in:
Robert von Burg 2014-01-10 19:10:36 +01:00
parent 3a756b9561
commit e781aea668
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ public class Order extends GroupedParameterizedElement {
@Override
protected void fillLocator(LocatorBuilder lb) {
lb.append(Tags.ORDER).append(getId());
lb.append(Tags.ORDER).append(getType()).append(getId());
}
@Override

View File

@ -74,7 +74,7 @@ public class Resource extends GroupedParameterizedElement {
@Override
protected void fillLocator(LocatorBuilder lb) {
lb.append(Tags.RESOURCE).append(getId());
lb.append(Tags.RESOURCE).append(getType()).append(getId());
}
@Override