NIHVIVO-1385 Adjust to the use of generics in FormObject
This commit is contained in:
parent
e8a1dd31b4
commit
d459840ef6
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ public class VclassRetryController extends BaseEditController {
|
||||||
log.error(this.getClass().getName()+" could not find the getVClassByURI method");
|
log.error(this.getClass().getName()+" could not find the getVClassByURI method");
|
||||||
}
|
}
|
||||||
|
|
||||||
HashMap<String,List> optionMap = new HashMap<String,List>();
|
HashMap<String, List<Option>> optionMap = new HashMap<String,List<Option>>();
|
||||||
try {
|
try {
|
||||||
VClassGroupDao vcgDao = request.getFullWebappDaoFactory().getVClassGroupDao();
|
VClassGroupDao vcgDao = request.getFullWebappDaoFactory().getVClassGroupDao();
|
||||||
List classGroupOptionList = FormUtils.makeOptionListFromBeans(vcgDao.getPublicGroupsWithVClasses(),"URI","PublicName",vclassForEditing.getGroupURI(),null,(vclassForEditing.getGroupURI()!=null && !(vclassForEditing.getGroupURI().equals(""))));
|
List classGroupOptionList = FormUtils.makeOptionListFromBeans(vcgDao.getPublicGroupsWithVClasses(),"URI","PublicName",vclassForEditing.getGroupURI(),null,(vclassForEditing.getGroupURI()!=null && !(vclassForEditing.getGroupURI().equals(""))));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue