Interface SecurableBaseService<C extends Securable>

    • Method Detail

      • update

        @Secured({"GROUP_USER","ACL_SECURABLE_EDIT"})
        void update​(C entity)
        Description copied from interface: BaseService
        Updates the given entity in the persistent storage.
        Specified by:
        update in interface BaseService<C extends Securable>
        Parameters:
        entity - the entity to be updated.
      • update

        @Secured({"GROUP_USER","ACL_SECURABLE_COLLECTION_EDIT"})
        void update​(Collection<C> entities)
        Description copied from interface: BaseService
        Updates all entities in the given collection in the persistent storage.
        Specified by:
        update in interface BaseService<C extends Securable>
        Parameters:
        entities - the entities to be updated.