Class HomeEntityCustomRepositoryImpl
java.lang.Object
com.bayudwiyansatria.spring.repository.mongodb.custom.impl.HomeEntityCustomRepositoryImpl
- All Implemented Interfaces:
HomeEntityCustomRepository
HomeEntityCustomRepositoryImpl
Implementation of the custom repository interface for HomeEntity. This class provides custom methods for querying HomeEntity objects.
The findOne
method is implemented to find a HomeEntity by its id and message.
- Since:
- 0.0.1
- Version:
- 0.0.1
- Author:
- Bayu Dwiyan Satria
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionFinds a HomeEntity by its id and message.
-
Constructor Details
-
HomeEntityCustomRepositoryImpl
public HomeEntityCustomRepositoryImpl()
-
-
Method Details
-
findOne
Finds a HomeEntity by its id and message.- Specified by:
findOne
in interfaceHomeEntityCustomRepository
- 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
-