summaryrefslogtreecommitdiffstats
path: root/base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java')
-rw-r--r--base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java b/base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java
index 8336bff7f..75087cd61 100644
--- a/base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java
+++ b/base/tps-tomcat/src/org/dogtagpki/server/tps/rest/ProfileMappingService.java
@@ -95,7 +95,7 @@ public class ProfileMappingService extends PKIService implements ProfileMappingR
}
@Override
- public Response findProfileMappings(Integer start, Integer size) {
+ public Response findProfileMappings(String filter, Integer start, Integer size) {
CMS.debug("ProfileMappingService.findProfileMappings()");
@@ -106,7 +106,7 @@ public class ProfileMappingService extends PKIService implements ProfileMappingR
TPSSubsystem subsystem = (TPSSubsystem)CMS.getSubsystem(TPSSubsystem.ID);
ProfileMappingDatabase database = subsystem.getProfileMappingDatabase();
- Iterator<ProfileMappingRecord> profileMappings = database.getRecords().iterator();
+ Iterator<ProfileMappingRecord> profileMappings = database.findRecords(filter).iterator();
ProfileMappingCollection response = new ProfileMappingCollection();
int i = 0;