From f6d68111d7a61b2a582166f3213497b5efbd8c6c Mon Sep 17 00:00:00 2001 From: jakubs <jakubs> Date: Mon, 16 Jan 2012 15:16:58 +0000 Subject: [PATCH] change default value of storageConfirmation field in ExternalDataPE to false SVN: 24205 --- .../cisd/openbis/generic/shared/dto/ExternalDataPE.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/ExternalDataPE.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/ExternalDataPE.java index 3d61a622f96..9b21f342c16 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/ExternalDataPE.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/ExternalDataPE.java @@ -80,7 +80,10 @@ public final class ExternalDataPE extends DataPE private boolean isPresentInArchive; - private boolean storageConfirmation; + // TODO: Storage confirmation should be set to false. + // At the moment however the logic is not yet implemented, and we want all objects in database + // to have true initialy. + private boolean storageConfirmation = true; private int speedHint = Constants.DEFAULT_SPEED_HINT; -- GitLab