Interface GoogleMfaAuthAccountService

    • Method Detail

      • delete

        @DELETE
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        @Path("accts/{owner}")
        void delete​(@NotNull @PathParam("owner")
                    @NotNull String owner)
      • delete

        @DELETE
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        @Path("accts/devices/{id}")
        void delete​(@NotNull @PathParam("id")
                    @javax.validation.constraints.NotNull long id)
      • deleteAll

        @DELETE
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        @Path("accts")
        void deleteAll()
      • create

        @POST
        @Path("accts/{owner}")
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        void create​(@NotNull @PathParam("owner")
                    @NotNull String owner,
                    @NotNull
                    @NotNull GoogleMfaAuthAccount acct)
      • update

        @PUT
        @Path("accts/{owner}")
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        void update​(@NotNull @PathParam("owner")
                    @NotNull String owner,
                    @NotNull
                    @NotNull GoogleMfaAuthAccount acct)
      • read

        @GET
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        @Path("accts/{owner}")
        PagedResult<GoogleMfaAuthAccount> read​(@NotNull @PathParam("owner")
                                               @NotNull String owner)
      • read

        @GET
        @Path("accts/id/{id}")
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        GoogleMfaAuthAccount read​(@NotNull @PathParam("id")
                                  @javax.validation.constraints.NotNull long id)
      • list

        @GET
        @Path("accts")
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        PagedResult<GoogleMfaAuthAccount> list()