Class ParamSupport.ParamManager

  • Enclosing class:
    ParamSupport

    public static class ParamSupport.ParamManager
    extends Object
    Provides support for aggregating query parameters in URLs. Specifically, accepts a series of parameters, ensuring that - newer parameters will precede older ones in the output URL - all supplied parameters precede those in the input URL
    • Constructor Detail

      • ParamManager

        public ParamManager()
    • Method Detail

      • addParameter

        public void addParameter​(String name,
                                 String value)
        Adds a new parameter to the list.
      • aggregateParams

        public String aggregateParams​(String url)
        Produces a new URL with the stored parameters, in the appropriate order.