loggedUser = false;
}
<<<<<<< HEAD
public String getMyPublicIP() {
System.out.println("getMyPublicIP()");
try {
URL readIp = new URL("http://automation.whatismyip.com/n 09230945.asp");
BufferedReader in = new BufferedReader(new InputStreamReader(readIp.openStream()));
String ip_address = (in.readLine()).trim();
return ip_address;
} catch (Exception e) {
e.printStackTrace();
return "Blad odczytu";
}
}
=======
>>>>>>> 4aa0ae4c038837e4bbe0e8893a1265eaf72e99dc
public boolean selectAuthentication(String userName, String password) {
System.out.println("selectAuthentication()");
boolean islooged = false; |