Interface HomeEntityCustomRepository
- All Known Implementing Classes:
HomeEntityCustomRepositoryImpl
,HomeEntityCustomRepositoryImpl
public interface HomeEntityCustomRepository
HomeEntityCustomRepository
Custom repository interface for HomeEntity. This interface provides custom methods for querying HomeEntity objects.
The findOne
method is declared to find a HomeEntity by its id and message.
- Since:
- 0.0.1
- Version:
- 0.0.1
- Author:
- Bayu Dwiyan Satria
-
Method Summary
Modifier and TypeMethodDescriptionFinds a HomeEntity by its id and message.
-
Method Details
-
findOne
Finds a HomeEntity by its id and message.- Parameters:
id
- the id of the HomeEntitymessage
- the message of the HomeEntity- Returns:
- the found HomeEntity, or null if no entity is found
- Since:
- 0.0.1
-