No primary or single public constructor found for interface com.filenet.api.core.ObjectStore - and no default constructor found either

242 Views Asked by At

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
0

There are 0 best solutions below