Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REST interface:
- @GET
- @Path("{uuid}")
- public List<RoutingModifier> getModifiers(@PathParam("uuid") String routing, @QueryParam("offset") Integer offset,
- @QueryParam("limit") Integer limit, @QueryParam("text") String searchKey, @QueryParam("enabled") Boolean enabled);
- @GET
- @Path("{uuid}/{address}")
- public RoutingModifier findModifier(@PathParam("uuid") String routing, @PathParam("address") String address);
- Service interface:
- public List<RoutingModifier> getModifiers(SearchCriteria criteria);
Advertisement
Add Comment
Please, Sign In to add comment