Entity classAll registrars have to sub-class psoft.hsphere.manager.Entity class. This class is bundled with Registrar SDK, and can be found in RegistrarSDK.jar. The class implements persistance for registrar settings. While used in H-Sphere, the class will use h-sphere database to store & load data. Yet, in Registrar SDK it reads (but does not write) data from file. This mode was specifically designed to accomodate new registrar development without the need of h-sphere system.
Entity classEntity.setBase("/path/to/entity_file_dir")
When used with default Register SDK junit test system (see Testing Your Registrar), the file name has to be 1.entity and file has to reside in entity directory inside Registrar SDK base directory. You don't have to call Entity.setBase(...) anywhere, as it will be done for you by the test suite. The entity file itself has to be defined
Entity file formatID.entity file is used to define name/value pairs that are loaded by registrar. The file is used for testing purposes. It is needed to provide to registrar configuration data, that in real system would be entered by admin through web interface.
name1=value1
name2=value2
name3=value3
...
Example: server=www.onlinenic.com port=20001 login=123545 password=test123