Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
Rest CallOut in LWC
Rest CallOut can be made in Salesforce in two ways: Server-side controller (Apex Class) Client-side controller (Js Controller) Server-side controller (Apex Class): We can make an API callout from Apex , which provides support for REST and SOAP callouts. Before
Mustache Templates in Totara
To write blocks of HTML directly in php/javascript by concatenating strings, a template is an alternative. Totara provides the templating language that is called Mustache. This is a new way to render the output. But, the output of using templates
What are the ACORD Forms/Certificates?
Introduction ACORD stands for Association for Cooperative Operations Research and Development is an international organization that provides standardized certificates and forms in the sector of insurance and related financial services industries. ACORD was established in 1970. In its earlier time,
Read PDF content using Selenium
To read PDF document file in Selenium, we can use a Java library called PDFBox. Apache PDFBox is an open-source library that helps in managing PDF files. We can use it to verify the text or images present in the
What is the National Producer Number and who assigns it?
National Producer Number: NPN is a unique NAIC identification number that is assigned through the National Association of Insurance Commissioner’s which is used to track individuals and business entities. It is assigned through the license application process. The National Insurance
Null Object Pattern in C#
The null object pattern is designed to handle the null exception of objects without implementing too many null checks in the application. This is done by identifying the behaviour that should occur when a null is encountered and declaring a
MVC Pattern in C Sharp
Introduction MVC stands for Model View Controller. It is a software architectural pattern that splits the application into three parts: model, view, and controller. The model is the data, the view is the user interface, and the controller connects the
Homeowner Application Coverages
Homeowner Insurance helps you protect your home in case of any hazard, or an accident. A few of the coverages that fall under Homeowners insurance are: Dwelling Dwelling coverage in the homeowner’s application helps you to pay for the repair
Inheritance in Apex
Inheritance is a feature of OOPS that allows us to inherit the properties or methods of a class. The base class acts as a parent, the class that is inheriting is called the child class. The child class has access