Interface CertificateService

    • Method Detail

      • save

        Certificate save​(Certificate certificate)
        Save a certificate.
        Parameters:
        certificate - the entity to save.
        Returns:
        the persisted entity.
      • findAll

        org.springframework.data.domain.Page<Certificate> findAll​(org.springframework.data.domain.Pageable pageable)
        Get all the certificates.
        Parameters:
        pageable - the pagination information.
        Returns:
        the list of entities.
      • findOne

        Optional<Certificate> findOne​(Long id)
        Get the "id" certificate.
        Parameters:
        id - the id of the entity.
        Returns:
        the entity.
      • delete

        void delete​(Long id)
        Delete the "id" certificate.
        Parameters:
        id - the id of the entity.