Code: Select all
return idGenerationService.findNextId("org.broadleafcommerce.profile.core.domain.Customer");
I would like to know if I really could use the same method for my custom entity something like..
com.mycompany.core.catalog.domain.MyCustomer by simply doing the following..
Code: Select all
return idGenerationService.findNextId("com.mycompany.core.catalog.domain.MyCustomer");
or do I need to do anything else apart from that?
Thanks in advance. Hope you will reply as soon as possible.