testOne
This commit is contained in:
parent
bd397d5bd1
commit
f73bd53cc0
@ -1,6 +1,26 @@
|
|||||||
public class Credentials {
|
public class Credentials {
|
||||||
|
|
||||||
|
String login;
|
||||||
|
String hash;
|
||||||
|
|
||||||
|
Credentials(String lg, String pw){
|
||||||
|
|
||||||
|
login = lg;
|
||||||
|
hash = pw;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public boolean valid(){
|
||||||
|
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
public static void main{
|
public static void main{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user