Re: [hibernate-dev] [OGM] Metamodel

2013-05-21 Thread Davide D'Alto
An initial prototype of the Metamodel (branch 208 on my repository: https://github.com/DavideD/hibernate-ogm/commits/208 I've added the Option class that can be extended into more specific specific Option (example WriteConcern for MongoDB or Quorum). Options can be grouped into an OptionContainer.

Re: [hibernate-dev] [OGM] Metamodel

2013-05-07 Thread Davide D'Alto
Thanks for all the information, I think I have a clearer idea now. I'll start to write some code and see what happens :) Davide On Fri, May 3, 2013 at 2:13 PM, Emmanuel Bernard wrote: > Hello Davide, > > Technically most of the knowledge is in > https://hibernate.atlassian.net/browse/OGM-208

Re: [hibernate-dev] [OGM] Metamodel

2013-05-03 Thread Emmanuel Bernard
Hello Davide, Technically most of the knowledge is in https://hibernate.atlassian.net/browse/OGM-208 but it's definitely quite blurry for a new comer ;) Let me try and summarize it for you. With that you'll be able to better grasp the comments in OGM-208 ## Goals We want a metadata facility as

[hibernate-dev] [OGM] Metamodel

2013-05-01 Thread Davide D'Alto
Hi, I've started to work on the metamodel. I've look at the branch that emmanuel created and I've rebased it to the latest master fixing all checkstyle violations: https://github.com/DavideD/hibernate-ogm/tree/208 The problem is that I don't have a clear idea how the metamodel is supposed to work,