sigram commented on a change in pull request #2281: URL: https://github.com/apache/lucene-solr/pull/2281#discussion_r570144961
########## File path: solr/core/src/java/org/apache/solr/handler/CollectionsAPI.java ########## @@ -36,7 +58,16 @@ */ public class CollectionsAPI { - private final CollectionsHandler collectionsHandler; + public static final String V2_CREATE_COLLECTION_CMD = "create"; + public static final String V2_BACKUP_CMD = "backup-collection"; + public static final String V2_RESTORE_CMD = "restore-collection"; + public static final String V2_CREATE_ALIAS_CMD = "create-alias"; + public static final String V2_SET_ALIAS_PROP_CMD = "set-alias-property"; + public static final String V2_DELETE_ALIAS_CMD = "delete-alias"; Review comment: Should we also add other collection commands here, such as: COLLECTIONPROP, CREATE / DELETESHARD, ADD / MOVE / DELETEREPLICA, MODIFYCOLLECTION, REINDEXCOLLECTION, RENAME, SPLITSHARD ? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org