diff --git a/core/lib/Drupal/Core/Config/Entity/DefaultConfigEntityListController.php b/core/lib/Drupal/Core/Config/Entity/DefaultConfigEntityListController.php
new file mode 100644
index 0000000..f621249
--- /dev/null
+++ b/core/lib/Drupal/Core/Config/Entity/DefaultConfigEntityListController.php
@@ -0,0 +1,36 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Core\Entity\DefaultConfigEntityListController.
+ */
+
+namespace Drupal\Core\Config\Entity;
+
+use Drupal\Core\Entity\EntityInterface;
+
+/**
+ * Provides a default entity list controller for config entities.
+ *
+ * This may be used by config entities which want to show only their label
+ * and operations in the entity list.
+ */
+final class DefaultConfigEntityListController extends ConfigEntityListController {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildHeader() {
+    $header['label'] = t('Label');
+    return $header + parent::buildHeader();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildRow(EntityInterface $entity) {
+    $row['label'] = $this->getLabel($entity);
+    return $row + parent::buildRow($entity);
+  }
+
+}
