Package org.openwms.wms.registration
Interface RegistrationService
- All Known Implementing Classes:
RegistrationServiceImpl
public interface RegistrationService
A RegistrationService.
- Author:
- Heiko Scherrer
-
Method Summary
Modifier and TypeMethodDescriptionboolean
registrarsExist
(@NotNull EntityType entityType) Checks if there are any registrars for the givenentityType
.void
remove
(@NotNull EntityType entityType, @NotBlank String pKey) Removes an entity of the specifiedentityType
and the given primary key.
-
Method Details
-
registrarsExist
Checks if there are any registrars for the givenentityType
.- Parameters:
entityType
- The entity type to check.- Returns:
true
if registrars exist for the given entity type,false
otherwise.
-
remove
Removes an entity of the specifiedentityType
and the given primary key.- Parameters:
entityType
- The type of the entity to remove.pKey
- The primary key of the entity to remove.
-