google-nomulus/java/google/registry/batch
guyben 9d2b1e7572 Consolidate all Set parameter parsing
Currently, we have two different ways to parse a "set" parameter:
key=value1&key=value2&key=value3...
and
keys=value1,value2,value3

This is error prone for several reasons:
- different parts of the code must be "synchronized" to use the same style (the
  place that creates the request, and the place that parses the request)
- for the key=value1&key=value2, we often use the same key name for the single
  value and the set value. This can result in subtle bugs where part of the
  code will successfully read the key assuming there's only one key (and will
  get the first key=value1, ignoring the rest)

Here we transition everything to the keys=value1,value2,value3 method. This one
was chosen because:
- it's shorter
- it's more intuitive for users
- the key name is plural, differentiating it from the singular key=value that
  other requests might need

-----------------------------------

To make sure there are not "transition issues", we will continue to support
(with warnings) the key=value1&key=value2 parameter parsing until we're sure we
haven't forgotten to update any part of the code.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=198810681
2018-06-06 15:04:02 -04:00
..
BatchComponent.java Update copyright year on all license headers 2017-02-02 16:27:22 -05:00
BatchModule.java Switch from Guava Optionals to Java 8 Optionals 2017-10-24 16:53:47 -04:00
BUILD Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
DeleteContactsAndHostsAction.java Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
DeleteLoadTestDataAction.java Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
DeleteProberDataAction.java Consolidate all Set parameter parsing 2018-06-06 15:04:02 -04:00
EntityIntegrityAlertsSchema.java Update copyright year on all license headers 2017-02-02 16:27:22 -05:00
ExpandRecurringBillingEventsAction.java Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
MapreduceEntityCleanupAction.java Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
MapreduceEntityCleanupUtil.java Remove unnecessary generic type arguments 2017-11-21 18:17:31 -05:00
RefreshDnsOnHostRenameAction.java Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
ResaveAllEppResourcesAction.java Replace many Work and VoidWork usages with lambdas 2017-11-21 18:45:12 -05:00
VerifyEntityIntegrityAction.java Migrate to Flogger (green) 2018-05-30 12:18:54 -04:00
VerifyEntityIntegrityStreamer.java Run automatic Java 8 conversion over codebase 2017-10-10 12:09:41 -04:00