Class MonetaryPovertyService

java.lang.Object
com.samupert.univpm.eurostat.monetary.poverty.MonetaryPovertyService

@Service public class MonetaryPovertyService extends Object
Service that handles the business logic of the Monetary Poverty entity.
  • Constructor Details

    • MonetaryPovertyService

      public MonetaryPovertyService()
  • Method Details

    • getAll

      public org.springframework.data.domain.Page<MonetaryPoverty> getAll(org.springframework.data.domain.Pageable page)
      Get all Monetary Poverty entities.
      Parameters:
      page - The page to retrieve.
      Returns:
      The retrieved Monetary Poverty entities.
    • searchByCriteria

      public org.springframework.data.domain.Page<MonetaryPoverty> searchByCriteria(org.springframework.data.jpa.domain.Specification<MonetaryPoverty> specification, org.springframework.data.domain.Pageable page)
      Get all Monetary Poverty entities that match the given specification.
      Parameters:
      specification - The filter to apply to the entities.
      page - The page to retrieve.
      Returns:
      The filtered Monetary Poverty entities.
    • getMetadata

      public EntityMetadata getMetadata()
      Get the metadata of the Monetary Poverty entity.
      Returns:
      The metadata of the Monetary Poverty entity.
      See Also: