Guest User

Untitled

a guest
Jan 22nd, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. @GET
  2. @Path("alleExpats/{auswahl}/{von: .*}/{bis: .*}/{level: .*}/{location: .*}/{suche: .*}/{gam_id: .*}/{empl_rcd: .*}/{center}/{reihenfolge: .*}/{statusfarbe: .*}")
  3. @Produces(MediaType.APPLICATION_JSON)
  4. public List<?> alleExpats(@PathParam("auswahl") String auswahl, @PathParam("von") String von,
  5. @PathParam("bis") String bis, @PathParam("level") String level, @PathParam("location") String location,
  6. @PathParam("suche") String suche, @PathParam("gam_id") String gam_id,
  7. @PathParam("empl_rcd") String empl_rcd, @PathParam("center") String center
  8. ,@PathParam("reihenfolge") String reihenfolge,@PathParam("statusfarbe") String statusfarbe) throws ParseException
  9. {
  10.  
  11. [...]
  12.  
  13. }
Add Comment
Please, Sign In to add comment