1 | return new StringBuffer()↵ | | |
|
2 | .append( "ActionQueue[insertions=" ).append( insertions )↵ | | |
|
3 | .append( " updates=" ).append( updates ↵ | | 1 | list = s.createCriteria(Fum.class)↵
|
| | | 2 | .createAlias("friends", "fr")↵
|
4 | )↵ | | 3 | .createAlias("fo", "fo")↵
|
5 | .append( " deletions=" ).append( deletions )↵ | | 4 | .add( Restrictions.like("fum", "f%") )↵
|
6 | .append( " collectionCreations=" ).append( collectionCreations )↵ | | 5 | .add( Restrictions.isNotNull("fo") )↵
|
7 | .append( " collectionRemovals=" ).append( collectionRemovals )↵ | | 6 | .add( Restrictions.isNotNull("fo.fum") )↵
|
8 | .append( " collectionUpdates=" ).append( collectionUpdates )↵ | | 7 | .a↵
|
9 | .append( "]" )↵ | | |
|
10 | .toString↵ | | 8 | dd( Restrictions.like("fr.fum", "g%") )↵
|
| | | 9 | .add( Restrictions.eqProperty("fr.id.short", "id.short") )↵
|
11 | (); | | 10 | .list();
|