Interface RegistrationService

All Known Implementing Classes:
RegistrationServiceImpl

public interface RegistrationService
A RegistrationService.
Author:
Heiko Scherrer
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    registrarsExist(@NotNull EntityType entityType)
    Checks if there are any registrars for the given entityType.
    void
    remove(@NotNull EntityType entityType, @NotBlank String pKey)
    Removes an entity of the specified entityType and the given primary key.
  • Method Details

    • registrarsExist

      boolean registrarsExist(@NotNull @NotNull EntityType entityType)
      Checks if there are any registrars for the given entityType.
      Parameters:
      entityType - The entity type to check.
      Returns:
      true if registrars exist for the given entity type, false otherwise.
    • remove

      void remove(@NotNull @NotNull EntityType entityType, @NotBlank @NotBlank String pKey)
      Removes an entity of the specified entityType and the given primary key.
      Parameters:
      entityType - The type of the entity to remove.
      pKey - The primary key of the entity to remove.