Class HomeEntityCustomRepositoryImpl

java.lang.Object
com.bayudwiyansatria.spring.repository.jpa.custom.impl.HomeEntityCustomRepositoryImpl
All Implemented Interfaces:
HomeEntityCustomRepository

public class HomeEntityCustomRepositoryImpl extends Object implements 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 Details

    • HomeEntityCustomRepositoryImpl

      public HomeEntityCustomRepositoryImpl()
  • Method Details

    • findOne

      public HomeEntity findOne(Long id, String message)
      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.

      Specified by:
      findOne in interface HomeEntityCustomRepository
      Parameters:
      id - the id of the HomeEntity
      message - the message of the HomeEntity
      Returns:
      the found HomeEntity, or null if no entity is found
      Since:
      0.0.1