Interface DecodeSavedSearchStrategy

All Known Implementing Classes:
DefaultDecodeSavedSearchStrategy

public interface DecodeSavedSearchStrategy
Strategy responsible for decoding a String representing a Saved Search into Map containing key value pairs of search criteria.
  • Method Summary

    Modifier and Type
    Method
    Description
    Converts key value pairs from String to Map.
  • Method Details

    • getEncodedDataMap

      Map<String,String> getEncodedDataMap(String encodedData)
      Converts key value pairs from String to Map.
      Parameters:
      encodedData - It should be of following format: 1. The key-value pairs should be pipe("|") separated. 2. Key should be assigned value using assignment("=")operator. For example: key1=value1|key2=value2
      Returns:
      encodedDataMap encoded data map