简体   繁体   中英

Difference between pojo vs model class in java

I am working on android app in which I am using gson library for serialization & de(serialization).

Below is the java class I am using for serialization & de(serialization). I am not sure is this model or pojo class.

public class Result {
    private String userId;
    private String sessionId;
}

Can anyone share what it is main difference between model & pojo class.

Thanks in advance

This would be a model class.

Model classes often represent a composition of properties from more than one POJO/POCO class for a specific use.

In your case, you have both a User and Session class. Your Result class is a composite of properties from your Session and User classes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM