summaryrefslogtreecommitdiffstats
path: root/config-model-api
diff options
context:
space:
mode:
Diffstat (limited to 'config-model-api')
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeReindexAction.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeReindexAction.java b/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeReindexAction.java
index d8ca3369874..085638e31ff 100644
--- a/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeReindexAction.java
+++ b/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeReindexAction.java
@@ -1,8 +1,6 @@
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.api;
-import java.util.Optional;
-
/**
* Represents an action to re-index a document type in order to handle a config change.
*
@@ -15,6 +13,6 @@ public interface ConfigChangeReindexAction extends ConfigChangeAction {
/** @return name identifying this kind of change, used to identify names which should be allowed */
String name();
- /** @return name of the document type that must be re-indexed, or empty if all document types */
- Optional<String> getDocumentType();
+ /** @return name of the document type that must be re-indexed */
+ String getDocumentType();
}