0

This is my controller -

@GetMapping("/dps/{documentName}")
@ResponseBody
public Document findAccountDetails(ObjectStore os, @PathVariable String documentName) {
    return myService.fetchDocById(os, documentName); 
}

and

ObjectStore is an interface present in this package -

com.filenet.api.core.ObjectStore
2
  • 2
    Maybe you need to write your own argument resolver for this ObjectStore interface, take a look at: baeldung.com/…
    – pleft
    Commented Sep 8, 2021 at 11:48
  • There are many methods in ObjectStore interface and I am not sure for which method I need to give the implementation Commented Sep 8, 2021 at 12:55

0