POJOについて疑問があります。
以下の例を見てください
public class User
{
String user="";
String password="";
String firstName="";
String lastName="";
ChallengeQuestions challengeQuestions;
//getter and setters for these prooperties
}
public class ChallengeQuestions
{
String question="";
String answer="";
//getter and setters for these properties
}
これが私の質問User
です。クラスがPOJOであるかどうかです。
ありがとう、
ナレンドラ