Creating of Plain Old Java Interface – POJI

What is POJI ?
POJI stands for Plain Old Java Interface. POJIs are used to enforce the idea of developing an Application Programming Interface (API). It allows POJO multiple inheritance in Java.
Lets discuss the importance of POJI concept with an example. In a college management portal, “Student” and “Staff” objects are inherited from a “User” Interface. The [...]