-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRecord.java
78 lines (68 loc) · 1.48 KB
/
Record.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package DB;
import DB.Types.*;
public class Record
{
public static final int VALID = 0;
public static final int INVALID = -1;
public static final int INCORRECT = +1;
Meta m;
long ID;
public Record()
{
m = new Meta();
ID = 0L;
}
public Data[] readAll()
{
return m.readAll();
}
public Meta getMeta()
{
return m;
}
public boolean insert()
{
ID = m.getID();
Data d = m.getData();
boolean test = true;
test &= m.insert();
test &= d.insert(ID);
return test;
}
public int read(String Username, String Password)
{
Credentials c = m.getCredentials();
boolean test = true;
int status = Record.INVALID;
test &= c.setUsername(Username);
if (!test)
{
status = Record.INCORRECT;
test = c.setUsername(Username, true);
}
else
return status;
c.setPassword(Password);
test &= m.init();
if (!test)
return Record.INVALID;
else
{
c.login(Password);
Data d = m.getData();
d.init(m.getID());
return Record.VALID;
}
}
public boolean delete()
{
return m.delete();
}
public boolean update(boolean now)
{
if (now)
return insert();
else
return delete();
}
}