summaryrefslogtreecommitdiffstats
path: root/base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java')
-rw-r--r--base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java b/base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java
index d23485ddd..f9432104b 100644
--- a/base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java
+++ b/base/tps-tomcat/src/org/dogtagpki/server/tps/profile/ProfileMappingService.java
@@ -105,7 +105,6 @@ public class ProfileMappingService extends PKIService implements ProfileMappingR
Iterator<ProfileMappingRecord> profileMappings = database.getRecords().iterator();
ProfileMappingCollection response = new ProfileMappingCollection();
-
int i = 0;
// skip to the start of the page
@@ -118,6 +117,7 @@ public class ProfileMappingService extends PKIService implements ProfileMappingR
// count the total entries
for ( ; profileMappings.hasNext(); i++) profileMappings.next();
+ response.setTotal(i);
if (start > 0) {
URI uri = uriInfo.getRequestUriBuilder().replaceQueryParam("start", Math.max(start-size, 0)).build();