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