Interface CSRService

  • All Known Implementing Classes:
    CSRServiceImpl

    public interface CSRService
    Service Interface for managing CSR.
    • Method Detail

      • save

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

        List<CSR> findAll()
        Get all the cSRS.
        Returns:
        the list of entities.
      • findAllWhereCertificateIsNull

        List<CSR> findAllWhereCertificateIsNull()
        Get all the CSRDTO where Certificate is null.
        Returns:
        the list of entities.
      • findOne

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

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