Guest User

Untitled

a guest
Feb 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. GET /clients/:clientId/info Controllers.Application.client(clientId)
  2.  
  3. GET /clients/:clientId/info Controllers.Application.client()
  4.  
  5. GET /clients/:clientId/info Controllers.Application.client(clientId)
  6.  
  7. object Application extends Controller {
  8.  
  9. def client(id: String): Action[AnyContent] = client()
  10.  
  11. def client() = Action {
  12. Ok("")
  13. }
  14.  
  15. }
  16.  
  17. public class Application extends Controller {
  18.  
  19. public static Result client(String id) {
  20. return client();
  21. }
  22.  
  23. public static Result client() {
  24. return ok();
  25. }
  26.  
  27. }
Add Comment
Please, Sign In to add comment