package com.interview.design.questions.callcenter; public class Caller { private String name; private int userId; public Caller(int id, String nm) { name = nm; userId = id; } }