blob: 7801a288d337f06a5222743fc71c346ab5555cfc (
plain)
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
|
package pl.edu.mimuw.cloudatlas.querysigner;
import java.io.Serializable;
public class QueryData implements Serializable {
// Original source code
private String code;
// Query signature
private byte[] signature;
// Query signing timestamp
private long timestamp;
public QueryData(String code, byte[] signature) {
this.code = code;
this.signature = signature;
this.timestamp = System.currentTimeMillis();;
}
public String getCode() {
return code;
}
public byte[] getSignature() {
return signature;
}
public long getTimestamp() {
return timestamp;
}
}
|