Interface HomeEntityCustomRepository


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 Type
    Method
    Description
    findOne(Long id, String message)
    Finds a HomeEntity by its id and message.
  • Method Details

    • findOne

      HomeEntity findOne(Long id, String message)
      Finds a HomeEntity by its id and message.
      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