diff --git a/datastore_server/source/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTask.java b/datastore_server/source/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTask.java index 2573d5108e20ca62f8790f64613da9a0b3f56644..2afafac14570fab40df470116b0b760441af3cda 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTask.java +++ b/datastore_server/source/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTask.java @@ -39,7 +39,7 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.IEntityProperty; * message. Template place holders have the form <code>${<i><place holder name></i>}</code>. * The place holder name for the data set code is <code>data-set-code</code>. To refer a data set * property the place holder name has the form - * <code>property:<i><property type code (ignoring case)>></code>. + * <code>property.<i><property type code (ignoring case)>></code>. * * @author Franz-Josef Elmer */ @@ -55,7 +55,7 @@ public class NotifyingTask extends AbstractPostRegistrationTask */ private static final String INCLUDE_DATASET_TYPES_PATTERN = "include-dataset-type-patterns"; - private static final String PROPERTY_PREFIX = "property:"; + private static final String PROPERTY_PREFIX = "property."; private static final String DATA_SET_CODE_PLACE_HOLDER = "data-set-code"; diff --git a/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties b/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties index 737cb0a75e18cb231034c690c8910f0131277520..3affa0eefb7b2e06a360a75d55cc08df1c95f92a 100644 --- a/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties +++ b/datastore_server/sourceTest/java/ch/systemsx/cisd/etlserver/postregistration/NotifyingTaskTest-Example.properties @@ -1,5 +1,5 @@ message-template = storage_provider.storage.status = STORAGE_SUCCESSFUL\n\ storage_provider.dataset.id = ${data-set-code}\n\ - ibrain2.dataset.id = ${property:ibrain-data-set-id}\n -destination-path-template = targets/ibrain-${property:ibrain-data-set-id}.txt + ibrain2.dataset.id = ${property.ibrain-data-set-id}\n +destination-path-template = targets/ibrain-${property.ibrain-data-set-id}.txt include-dataset-type-patterns = .*XYZ.*, accepted-type