JavaBean
Quick TL;DR
JavaBean is a standard meaning it needs to adhere to the following conventions:
All properties are private (use getters/setters)
A public no-argument constructor
Implements Serializable interface
Last updated
JavaBean is a standard meaning it needs to adhere to the following conventions:
All properties are private (use getters/setters)
A public no-argument constructor
Implements Serializable interface
Last updated