Skip to content
Snippets Groups Projects
Commit 487c5804 authored by jakubs's avatar jakubs
Browse files

SP-299 BIS-211 add filter for storage confirmed datasets

SVN: 26948
parent 59fbdef3
No related branches found
No related tags found
No related merge requests found
......@@ -93,6 +93,8 @@ public final class DataSet implements Serializable, IIdHolder
private EntityRegistrationDetails registrationDetails;
private boolean isStorageConfirmed = true;
public Long getId()
{
return id;
......@@ -256,6 +258,17 @@ public final class DataSet implements Serializable, IIdHolder
{
this.externalDataManagementSystem = externalDataManagementSystem;
}
public boolean isStorageConfirmed()
{
return isStorageConfirmed;
}
public void setStorageConfirmed(boolean isStorageConfirmed)
{
this.isStorageConfirmed = isStorageConfirmed;
}
}
private Long id;
......@@ -272,6 +285,8 @@ public final class DataSet implements Serializable, IIdHolder
private boolean linkDataSet;
private boolean storageConfirmed;
private String externalDataSetCode;
private String externalDataSetLink;
......@@ -327,6 +342,7 @@ public final class DataSet implements Serializable, IIdHolder
this.externalDataSetCode = initializer.getExternalDataSetCode();
this.externalDataSetLink = initializer.getExternalDataSetLink();
this.externalDataManagementSystem = initializer.getExternalDataManagementSystem();
this.storageConfirmed = initializer.isStorageConfirmed();
}
/**
......@@ -614,4 +630,15 @@ public final class DataSet implements Serializable, IIdHolder
}
}
}
public boolean isStorageConfirmed()
{
return storageConfirmed;
}
public void setStorageConfirmed(boolean storageConfirmed)
{
this.storageConfirmed = storageConfirmed;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment