Change-Id: Iae1758b963141df4f6369672d219348242ec796e
Issue-ID: SDC-343
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
private String key;
private String value;
+ /**
+ * Every entity class must have a default constructor according to
+ * <a href="http://docs.datastax.com/en/developer/java-driver/2.1/manual/object_mapper/creating/">
+ * Definition of mapped classes</a>.
+ */
+ public ApplicationConfigEntity() {
+ // Don't delete! Default constructor is required by DataStax driver
+ }
+
/**
* Instantiates a new Application config entity.
*
this.value = value;
}
-
- public ApplicationConfigEntity() {
- }
-
-
public String getNamespace() {
return namespace;
}