JSON Web Token – JWT

JSON Web Token (JWT) defines a compact and self-contained way for securely transmitting information between parties as a JSON object. JWTs are commonly used to represent claims between two parties,…

0 Comments

When to Use Abstract Class?

Abstract Classes are a good fit if you want to provide implementation details to your children but don't want to allow an instance of your class to be directly instantiated…

0 Comments

Object Oriented Concepts

Before we go into detail, let’s define important terms related to Object Oriented Programming and Object Oriented Concepts Class − This is a programmer-defined data type, which includes local functions…

0 Comments