Interface RDNService

  • All Known Implementing Classes:
    RDNServiceImpl

    public interface RDNService
    Service Interface for managing RDN.
    • Method Detail

      • save

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

        List<RDN> findAll()
        Get all the rDNS.
        Returns:
        the list of entities.
      • findOne

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

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