Class DatabaseEntryServiceImpl

All Implemented Interfaces:
BaseImmutableService<DatabaseEntry>, BaseReadOnlyService<DatabaseEntry>, BaseService<DatabaseEntry>, BaseVoEnabledService<DatabaseEntry, DatabaseEntryValueObject>, DatabaseEntryService, FilteringService<DatabaseEntry>, FilteringVoEnabledService<DatabaseEntry, DatabaseEntryValueObject>

@Service public class DatabaseEntryServiceImpl extends AbstractFilteringVoEnabledService<DatabaseEntry, DatabaseEntryValueObject> implements DatabaseEntryService
Spring Service base class for DatabaseEntryService, provides access to all services and entities referenced by this service.

Phase 3 strangler: the read cluster (findLatestByAccession, plus the inherited load(Long)/loadAll()/countAll()/findByAccession surface if you reach for it) now lives on DatabaseEntryReadService; this facade delegates the unique read method to that service. Write methods stay on the facade.

See Also: