Process:
• ABC Company buys the license of MAMBO.
• License Key is given to the ABC Company.
• ABC Company passes on the license key to login to the MAMBO system.
• License key is verified by the system.
• Auth Token is generated by the system.
• Auth Token is returned to the ABC Company.
| New login for ABC Company |
• ABC Company passes the license key to MAMBO system.
• MAMBO system checks the license key in DB, if the same license key exists in DB.
• If the same License key exists in DB, MAMBO generates new Auth Token.
• Remove the existing login Auth Token Key.
• Add new Auth Token to the maps.
• Return the new Auth token to ABC Company.
| Users call WS to input the Asset to System, create account, access account, and edit account |
• Users call the WS to access the system.
• Web services contain the request and that request contains the Auth Token.
• User needs to pass the Auth Token key to access their account.
• System verifies the Auth Token.
• Upon Valid Auth Token user is given the access to the system.
• Users can access, create or edit the accounts they also can update,add, or delete the assets in the accounts.
• Users call the web services.
• WS contain the request for the job to be performed.
• System calls the Service to process the request.
• For different requests different Services are called.
• For create account, the system calls create account Service.
• Create account Service contains CreateAccountRequest object, which contains the Auth Token.
• Service processes the request and returns the response to the user (success/failure).