package test.connexion;
import java.rmi.RemoteException;
import client.Client;
import profil.ProfilSocial;
import profil.Profil.Sexe;
import serveur.Serveur;
import util.ProfilException;
public class TestProfil {
public static void main(String[] args) {
try {
new Serveur();
Client.newProfil(new ProfilSocial("tarek", "azerty", "JAOUANI", "Tarek", Sexe.H));
System.out.println(Client.getProfil("tarek").getNom());
} catch (RemoteException e) {
e.printStackTrace();
} catch (ProfilException e) {
e.printStackTrace();
}
}
}