defect commit

This commit is contained in:
gexce
2017-09-11 17:14:39 +02:00
parent 2c1542c4f3
commit 9a658f5491
5 changed files with 168 additions and 18 deletions
+34
View File
@@ -0,0 +1,34 @@
package hello;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Quote {
private String type;
private Value value;
public Quote() {
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Value getValue() {
return value;
}
public void setValue(Value value) {
this.value = value;
}
@Override
public String toString() {
return "Quote{" + "type='" + type + '\'' + ", value=" + value + '}';
}
}