argos/dmp-backend/notification-service/notification/src/main/java/gr/cite/notification/common/types/notification/FieldInfo.java

44 lines
757 B
Java

package gr.cite.notification.common.types.notification;
public class FieldInfo {
private String key;
public final static String _key = "key";
private DataType type;
public final static String _type = "type";
private String value;
public final static String _value = "value";
public FieldInfo(String key, DataType type, String value) {
this.key = key;
this.type = type;
this.value = value;
}
public FieldInfo() {
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public DataType getType() {
return type;
}
public void setType(DataType type) {
this.type = type;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}