Advertisement
Guest User

Untitled

a guest
Aug 9th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. package client;
  2.  
  3. public class Config {
  4. public static final String SERVER = "78.91.10.167";
  5. public static final int SERVER_PORT = 8120;
  6. }
  7.  
  8. package server;
  9.  
  10. public class Config {
  11.  
  12. public static final String SQL_DRIVER = "com.mysql.jdbc.Driver";
  13. public static final String SQL_HOST = "jdbc:mysql://srv1.fncit.no/";
  14. public static final String SQL_DB = "fellesprosjekt";
  15. public static final String SQL_USERNAME = "fellesprosjekt";
  16. public static final String SQL_PASSWORD = "fsg19";
  17.  
  18. /**
  19. * Timeout in seconds before server closes session,
  20. * if client has not pinged
  21. */
  22. public static final int timeout = 60;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement