I am generating a big nasty ruby-style hashmap, and rather than re-factor to well described objects i just want to hang this beastliness quickly onto a domain object. Is there any EASY way to store this hashmap without having to write a bunch of .toBytes getters and setters?
class EasyObjectStorer{
Object thing
}
Would be just super. So I can go:
def makeThisThing = new EasyObjectStorer()
makeThisThing.thing=['allala':'laalla','etc':'etc']
makeThisThing.save(failOnError:true)