Hello
I am using Model Driven Development, however all of my data insertion is not going to happen via the forms. There may be a background process that may pull the data from some where and insert into the database table, I am trying to use the existing assembler e.g, CurrencyAssembler to fetch all data or create a new item into it. How can I do it? I tried to instantiate CurrencyAssembler in my java class and call createItem(Currency) but I get null pointer exception, If I call the fill() on it, it needs PropertySpecifier object which is not allowed to be created outside its package. How do I use these assemblers for my non-form push and pull?
thanks
RK