diff --git a/datastore_server/dist/etc/service.properties b/datastore_server/dist/etc/service.properties
index 7a97360e3bd8b51aa39da58e80b276a1baa70c24..1d9e9b395c789559203634c39765c47089b04797 100644
--- a/datastore_server/dist/etc/service.properties
+++ b/datastore_server/dist/etc/service.properties
@@ -178,21 +178,22 @@ main-thread.incoming-data-completeness-condition = marker-file
 # Comma separated names of image overview plugins. 
 # Each plugin should have configuration properties prefixed with its name.
 # Generic properties for each <plugin> include: 
-#   <plugin>.class   - Fully qualified plugin class name (mandatory).
+#   <plugin>.class   - Fully qualified plugin class name (mandatory) of a class 
+#                      which implements IDatasetImageOverviewPlugin interface.
 #   <plugin>.default - If true all data set types not handled by other plugins should be handled 
 #                      by the plugin (default = false). 
 #   <plugin>.dataset-types - Comma separated list of data set types handled by the plugin 
 #                      (optional and ignored if default is true, otherwise mandatory). 
-#overview-plugins = default-overview, hcs-image-overview
+# Example:
+#overview-plugins = default-overview, my-overview
 #
 #default-overview.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.demo.DemoOverviewPlugin
 #default-overview.default = true
 # Optional property specific to the plugin
 #default-overview.label = default plugin
 #
-#hcs-image-overview.class = ch.systemsx.cisd.openbis.dss.generic.server.plugins.demo.DemoOverviewPlugin
-#hcs-image-overview.dataset-types = HCS_IMAGE
-#hcs-image-overview.label = plugin for HCS_IMAGE
+#my-overview.class = org.mycompany.MyOverviewPlugin
+#my-overview.dataset-types = MY-DATASET-TYPE-CODE
 
 # ---------------------------------------------------------------------------
 # maintenance plugins configuration