Interface GoogleMfaAuthAccountService

  • All Superinterfaces:
    org.apache.syncope.common.rest.api.service.JAXRSService

    @Path("wa/gauth/accts")
    public interface GoogleMfaAuthAccountService
    extends org.apache.syncope.common.rest.api.service.JAXRSService
    • Field Summary

      • Fields inherited from interface org.apache.syncope.common.rest.api.service.JAXRSService

        CRLF, DOUBLE_DASH, PARAM_ANYTYPE_KIND, PARAM_ANYTYPEKEY, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_KEYWORD, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_REALM, PARAM_RECURSIVE, PARAM_RESOURCE, PARAM_SIZE, PARAM_USER
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void create​(@NotNull org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount acct)  
      void delete​(@javax.validation.constraints.NotNull long id)  
      void delete​(@NotNull String owner)  
      void deleteAll()  
      org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount> list()  
      org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount read​(@javax.validation.constraints.NotNull long id)  
      org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount> read​(@NotNull String owner)  
      void update​(@NotNull org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount acct)  
    • Method Detail

      • list

        @GET
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount> list()
      • read

        @GET
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        @Path("{owner}")
        org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount> read​(@NotNull @PathParam("owner")
                                                                                                                 @NotNull String owner)
      • read

        @GET
        @Path("devices/{id}")
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount read​(@NotNull @PathParam("id")
                                                                   @javax.validation.constraints.NotNull long id)
      • create

        @POST
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        void create​(@NotNull
                    @NotNull org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount acct)
      • update

        @PUT
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        void update​(@NotNull
                    @NotNull org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount acct)
      • delete

        @DELETE
        @Consumes({"application/json","application/yaml","application/xml"})
        @Produces({"application/json","application/yaml","application/xml"})
        @Path("{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("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"})
        void deleteAll()