diff --git a/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/api/v1/IDataSet.java b/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/api/v1/IDataSet.java index 3def5731dff8b77398594a1d5bfbddb7157f3f42..edc65c817ee6f8a3b7ba043c5f679f7a37558049 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/api/v1/IDataSet.java +++ b/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/api/v1/IDataSet.java @@ -68,6 +68,8 @@ public interface IDataSet /** * The file format type of the data set. Defaults to the default specified in * {@link FileFormatType}. + * <p> + * This property is undefined for container data sets. * * @return The code of the {@link FileFormatType} for this data set. */ @@ -75,6 +77,8 @@ public interface IDataSet /** * Set the file format type. + * <p> + * This property is undefined for container data sets. * * @param fileFormatTypeCode The code of the desired {@link FileFormatType}. */ @@ -106,6 +110,8 @@ public interface IDataSet /** * Returns the speed hint. If it hasn't been set by {@link #setSpeedHint(int)} the default value * {@link Constants#DEFAULT_SPEED_HINT} will be returned. + * <p> + * This property is undefined for container data sets. */ public int getSpeedHint(); @@ -116,6 +122,8 @@ public interface IDataSet * A positive value means that the data set should be stored in a storage with speed >= * <code>speedHint</code>. A negative value means that the data set should be stored in a * storage with speed <= <code>abs(speedHint)</code>. The speed hint might be ignored. + * <p> + * This property is undefined for container data sets. */ public void setSpeedHint(int speedHint);