Skip to content
Snippets Groups Projects
Commit 02b359b0 authored by pkupczyk's avatar pkupczyk
Browse files

SSDM-1450 : V3 AS API - define JS dependencies and make them easy to maintain...

SSDM-1450 : V3 AS API - define JS dependencies and make them easy to maintain - add missing no-arg constructors for json deserialization

SVN: 33445
parent ea73ac0c
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,11 @@ public class StringContainsValue extends AbstractStringValue
{
private static final long serialVersionUID = 1L;
private StringContainsValue()
{
super(null);
}
protected StringContainsValue(String value)
{
super(value);
......
......@@ -23,6 +23,11 @@ public class StringEndsWithValue extends AbstractStringValue
{
private static final long serialVersionUID = 1L;
private StringEndsWithValue()
{
super(null);
}
protected StringEndsWithValue(String value)
{
super(value);
......
......@@ -23,6 +23,11 @@ public class StringStartsWithValue extends AbstractStringValue
{
private static final long serialVersionUID = 1L;
private StringStartsWithValue()
{
super(null);
}
protected StringStartsWithValue(String value)
{
super(value);
......
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