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

    Modifier and Type
    Method
    Description
    void
    create(@NotNull org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount acct)
     
    void
    delete(@NotNull long id)
     
    void
    delete(@NotNull String owner)
     
    void
     
    org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount>
     
    org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount
    read(@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 Details

    • list

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

      @GET @Consumes("application/json") @Produces("application/json") @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") @Produces("application/json") org.apache.syncope.common.lib.wa.GoogleMfaAuthAccount read(@NotNull @PathParam("id") @NotNull long id)
    • create

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

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

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

      @DELETE @Consumes("application/json") @Produces("application/json") @Path("devices/{id}") void delete(@NotNull @PathParam("id") @NotNull long id)
    • deleteAll

      @DELETE @Consumes("application/json") @Produces("application/json") void deleteAll()