Added gitignore; Common module created; TTResponse created; TTLogger created; Auth RMI created;
This commit is contained in:
parent
ac694a1776
commit
f18d7c4bb4
90 changed files with 844 additions and 2105 deletions
13
Commons/src/interfaces/ITTAuth.java
Normal file
13
Commons/src/interfaces/ITTAuth.java
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package interfaces;
|
||||
import models.TTResponse;
|
||||
|
||||
import java.rmi.Remote;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
/**
|
||||
* Created by loke on 15/06/2017.
|
||||
*/
|
||||
public interface ITTAuth extends Remote {
|
||||
TTResponse login(String userName, String password) throws RemoteException;
|
||||
TTResponse logout(String userName, String token) throws RemoteException;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue