Is this class is a POJO
- by Narendra
Hi All,
I have a doubt regarding POJO.
Take below example
public class **user**
{
String user="";
String password="";
String firstName="";
String lastName="";
ChallengeQuestions challengeQuestions;
//Getter and setters for thses prooperties
}
public class **ChallengeQuestions**
{
String question="";
String answer="";
//getter and setters for these properties
}
Here My question is **User** class is POJO or not.
Thanks,
Narendra