final List list = new ArrayList();
ksession.setGlobal( "list",
list );
final Cheese stilton = new Cheese( "stilton",
12 );
ksession.insert( stilton );
final Cheese brie = new Cheese( "brie",
10 );
ksession.insert( brie );
final Cheesery cheesery = new Cheesery();
cheesery.getCheeses().add( stilton );