A library for contacting retopall website. Create PHP requests and require login and if you want license to your applications. Synchronized with Retopall users
- Save cache of user sign in and license
- High security systems. Encryption
- Window design
- Log out option
- Website synchronization
If you want to make an application that extends and need to buy user Retopall licenses and the obligation to sign in into your account, you should use this library.
Application written in Java. Use any IDE like Ecplise to add the .jar library
The library is simple to use. Firstly create LoginWindow instance with the required parameters.
String appName: the app name will be shown in Retopall website user panel in their licenses if the license system is operationsal
int appID: the App ID for doing all the requests and petitions
boolean requiresLicense: if it's set to true it will give a extra window for adding an license. The user could not enter to the app if the license is not valid
The use of this library is simple. Create a LoginWindow instance
LoginWindow lw = new LoginWindow("$YourApplicationName$",$ApplicationID$,$requiresLicense$) {
@Override
public void onLogin() {
//Operation to do when the user finally log in (and) use a valid license
//Example create a window view
}
@Override
public void onCancel() {
//If the user close the sign in window
}
};