[BAEL-19673] - Move articles out of jackson part 1

This commit is contained in:
catalin-burcea
2019-11-22 14:52:42 +02:00
parent 16de535f00
commit 5cc2d3dc07
97 changed files with 894 additions and 210 deletions

View File

@@ -0,0 +1,21 @@
package com.baeldung.exceptions;
public class UserWithNoDefaultConstructor {
private int id;
private String name;
public UserWithNoDefaultConstructor(final int id, final String name) {
this.id = id;
this.name = name;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
}