Package test.connexion

Source Code of test.connexion.TestProfil

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();
    }
   
   
  }

}
TOP

Related Classes of test.connexion.TestProfil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.