OPENDJ-1714 OPENDJ-1725 UI: Update system indexes
* org.opends.guitools.controlpanel.util.ConfigFromFile
** Remove deleted pluggable backend indexes in OPENDJ-1725:
*** id2children
*** id2subtree
** Add added pluggable backend index in OPENDJ-1725:
*** id2childrencount
| | |
| | | final PluggableBackendCfg db) |
| | | { |
| | | indexes.add(new IndexDescriptor(DN2ID_INDEX_NAME)); |
| | | // FIXME: Remove the two following indexes when they will be deleted |
| | | indexes.add(new IndexDescriptor(ID2CHILDREN_INDEX_NAME)); |
| | | indexes.add(new IndexDescriptor(ID2SUBTREE_INDEX_NAME)); |
| | | indexes.add(new IndexDescriptor(ID2CHILDREN_COUNT_NAME)); |
| | | try |
| | | { |
| | | for (final String indexName : db.listBackendIndexes()) |