hi
public Collection<Device> get(
@QueryParam("all") boolean all, @QueryParam("userId") long userId,
@QueryParam("uniqueId") List<String> uniqueIds,
@QueryParam("id") List<Long> deviceIds) throws SQLException{}
this is the prototype of get devices api.
my question in any situation the params are passed to the function? as example i didnt find any situation while i debug the project in which the all param set to true.
i wish i have explained the question in good way.
thanks in advance.
the question in another way, when the AllDevices Store is used and requested?
Done.
I got it.
in users administration, when we want to match between user and devices.
hi
public Collection<Device> get( @QueryParam("all") boolean all, @QueryParam("userId") long userId, @QueryParam("uniqueId") List<String> uniqueIds, @QueryParam("id") List<Long> deviceIds) throws SQLException{}
this is the prototype of get devices api.
my question in any situation the params are passed to the function? as example i didnt find any situation while i debug the project in which the all param set to true.
i wish i have explained the question in good way.
thanks in advance.