LMS

Welcome to the Lobeo Module Server project. Please feel free to submit bugs related to it.
Tasklist

FS#547 - [WTK] Instance registration when creating a new application

Attached to Project: LMS
Opened by Guillaume (Guillaume) - Wednesday, 23 January 2013, 10:39 GMT
Last edited by Guillaume (Guillaume) - Thursday, 28 February 2013, 08:42 GMT
Task Type Bug Report
Category
Status Closed
Assigned To Guillaume (Guillaume)
Operating System All
Severity Low
Priority Normal
Reported Version alpha5
Due in Version alpha6
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

Instance registration when creating a new application


when an application is registered, we need to call the MS to register the app
This task depends upon

Closed by  Guillaume (Guillaume)
Thursday, 28 February 2013, 08:42 GMT
Reason for closing:  Implemented
Comment by Ferdinand (PaGaisu) - Wednesday, 06 February 2013, 14:09 GMT
unregister too
Comment by Ferdinand (PaGaisu) - Wednesday, 06 February 2013, 14:31 GMT
property key:
server.name
owner.email
Comment by Ferdinand (PaGaisu) - Wednesday, 06 February 2013, 15:58 GMT
In the service com.lobeo.lms.core.service.MasterServer:

/**
* Register a new application
* @param userEmail the email of the owner of the server hosting the application
* @param serverName the name of the server hosting the application
* @param path the path to access of the application
* @return the id of the application
* @throws StandardException when an error occurs
*/
public long registerApplication(String userEmail, String serverName, String path) throws StandardException;

/**
* Unregister an application
* @param userEmail the email of the owner of the server hosting the application
* @param serverName the name of the server hosting the application
* @param path the path to access of the application
* @return true if the unregistration is successful
* @throws StandardException when an error occurs
*/
public boolean unregisterApplication(String userEmail, String serverName, String path) throws StandardException;

Loading...