Class AppController


  • @Provider
    @Path("/apps")
    public class AppController
    extends Object
    • Constructor Detail

      • AppController

        public AppController()
    • Method Detail

      • createAppKey

        @POST
        @Path("/")
        @Produces("application/json")
        public javax.ws.rs.core.Response createAppKey​(@Context
                                                      javax.ws.rs.core.SecurityContext sec,
                                                      @QueryParam("organisation")
                                                      String organisation,
                                                      @QueryParam("ownername")
                                                      String ownerName,
                                                      @QueryParam("addressStreet")
                                                      String addressStreet,
                                                      @QueryParam("addressStreetnumber")
                                                      String addressStreetnumber,
                                                      @QueryParam("addressPostcode")
                                                      String addressPostcode,
                                                      @QueryParam("addressCity")
                                                      String addressCity,
                                                      @QueryParam("templateKey")
                                                      String templateKey)
                                               throws IOException,
                                                      SQLException
        Throws:
        IOException
        SQLException