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(@jakarta.validation.constraints.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(@jakarta.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 Details

    • 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") @jakarta.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") @jakarta.validation.constraints.NotNull long id)
    • deleteAll

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