Skip to content
Snippets Groups Projects
Commit 1646f74b authored by vkovtun's avatar vkovtun
Browse files

SSDM-13368 STOs roundtrip test.

parent 3e60f6f1
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -24,6 +24,11 @@ public class ControlledVocabularyPropertySearchCriteria extends AbstractFieldSea
private static final long serialVersionUID = 1L;
ControlledVocabularyPropertySearchCriteria()
{
super(null, SearchFieldType.PROPERTY);
}
ControlledVocabularyPropertySearchCriteria(final String propertyName)
{
super(propertyName, SearchFieldType.PROPERTY);
......
......@@ -24,6 +24,11 @@ public class SamplePropertySearchCriteria extends AbstractFieldSearchCriteria<St
private static final long serialVersionUID = 1L;
SamplePropertySearchCriteria()
{
super(null, SearchFieldType.PROPERTY);
}
public SamplePropertySearchCriteria(final String propertyName)
{
super(propertyName, SearchFieldType.PROPERTY);
......
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