aboutsummaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-18 13:51:30 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-18 13:51:30 +0200
commit242ef8cb23fbaeb9ed3f82222362641ef95d13da (patch)
tree62e16a4a86cdca3a07e0b866056b1964bd640c37 /config-model
parent93cbc29b8c910dd7daaf38fa947b2fd94bd0a8d1 (diff)
@author last and a simple javadoc
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/ContainerClusterVerifier.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerClusterVerifier.java b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerClusterVerifier.java
index c35665d5bf8..727201e3d70 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerClusterVerifier.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerClusterVerifier.java
@@ -3,21 +3,23 @@ package com.yahoo.vespa.model.container;
import com.yahoo.vespa.model.container.component.Component;
/**
- * @author baldersheim
*
* Operations on a container cluster are verified against this verifier
* This can be used for ignoring, consitency checking.
+ *
+ * * @author baldersheim
+ *
*/
public interface ContainerClusterVerifier {
/**
- *
+ * Return true if you accept the component.
* @param component name of component that wants to be added
* @return true if you accept it
*/
boolean acceptComponent(Component component);
/**
- *
+ * Return true if you accept the container.
* @param container container to add
* @return true if you accept it
*/