Advertisement
Guest User

Untitled

a guest
May 28th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import java.rmi.*;
  2. import java.rmi.server.*;
  3. import java.security.*;
  4.  
  5.  
  6. public class Klient
  7. {
  8. public CebulaInt g;
  9.  
  10. public String Nazwa;
  11.  
  12. public Key klucz;
  13.  
  14. public String Host;
  15. public int PORT;
  16.  
  17. Klient(CebulaInt g, String nick, Key k, String host, int port)
  18. {
  19. this.g = g;
  20. Nazwa = nick;
  21. klucz=k;
  22. PORT=port;
  23. Host=host;
  24. }
  25.  
  26.  
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement