Everybody has faced the same problem once coding. You need to create an object, and it has a huge constructor. Example: User user = new User("1", "John", "Travolta", "amazing street", "2", "New York"); User.java public class User {
private String id;
private String name…