Interface CriteriaSerializer


public interface CriteriaSerializer
Interface for serializing criteria from dynamic objects into result maps.

This interface defines the contract for extracting and serializing criteria information from a dynamic object into a map structure, typically used for data transfer or persistence operations.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Serializes criteria from a dynamic object into the provided result map.
  • Method Details

    • serialize

      void serialize(DynO dynO, Map<String,Object> res)
      Serializes criteria from a dynamic object into the provided result map.

      This method extracts criteria information from the given dynamic object and populates the result map with the serialized data. The specific serialization format and structure depend on the implementation.

      Parameters:
      dynO - the dynamic object containing criteria to be serialized
      res - the result map to populate with serialized criteria data