Skip to main content

Register extensible object

Create a service that extends ApplicationBootService

In the methods syncServerBoot and consoleBoot, you should register it using the following code:

ExtensibleObjectRegister eo = new ExtensibleObjectRegister();
eo.setName("clearance");
eo.setDescsription("e-Clearance object");
eo.setClassName("com.soffid.addon.test.ClearanceExtensibleObject");
getAdditionalDataService().registerExtensibleObject (eo);