Interface Populator<S,​T extends ViewDTO>

  • Type Parameters:
    S - The source object for the population.
    T - The dest object for the population.
    All Known Implementing Classes:
    GenericPopulator

    public interface Populator<S,​T extends ViewDTO>
    Interface for a Populator.
    • Method Detail

      • convert

        void convert​(S source,
                     T target)
        Converts the properties from source to target object.
        Parameters:
        source - Source object.
        target - Target object.
      • returnType

        String returnType()