Originally posted by anitha vasikarla:
if (templateList != null && !templateList.isEmpty()) {
templateLable = new ArrayList();
for (int i = 0; i < templateList.size(); i++) {
Template lableValueset = (Template) templateList.get(i);
if (lableValueset != null) {
LabelValueBean lvb = new LabelValueBean(lableValueset.getTemplateName(),
In this code "LabelValueBean " used what is the use of that one,how it works.
Originally posted by saumil baxi:
Hi,
I am creating one application in which i dont want to use normal properties file for storing the configuration.
I want to put all my configuration in database and provide an API for fetching the configuration..
Can any one give me some path forward. How should i design my database and API..
Thanks,
Saumil