Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit b197eec4 authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

Add web ui modul - first version

parent f6c86ed5
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ public class ServiceUIData {
ServiceResult<ServiceMetadataRO> sg = new ServiceResult<>();
sg.setPage(page);
sg.setPageSize(pageSize);
long iCnt = uiDaoService.getDataListCount(DomainRO.class, null);
long iCnt = uiDaoService.getDataListCount(ServiceMetadataRO.class, null);
sg.setCount(iCnt);
if (iCnt > 0) {
List<ServiceMetadataRO> lst = uiDaoService.getDataList(ServiceMetadataRO.class, page * pageSize, pageSize, sortField, sortOrder, null);
......
-- Copyright 2018 European Commission | CEF eDelivery
x-- Copyright 2018 European Commission | CEF eDelivery
--
-- Licensed under the EUPL, Version 1.2
--
......@@ -116,6 +116,6 @@ CREATE TABLE hibernate_sequence(
next_val BIGINT NOT NULL
);
INSERT INTO hibernate_sequence(next_val) values(1
INSERT INTO hibernate_sequence(next_val) values(1);
commit;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment