File tree 3 files changed +6
-3
lines changed
client/src/org/openqa/selenium/remote
server/src/org/openqa/selenium/grid/data
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 20
20
import org .openqa .selenium .internal .Require ;
21
21
import org .openqa .selenium .json .JsonException ;
22
22
23
+ import java .io .Serializable ;
23
24
import java .util .Map ;
24
25
import java .util .UUID ;
25
26
26
- public class SessionId {
27
+ public class SessionId implements Serializable {
27
28
28
29
private final String opaqueKey ;
29
30
Original file line number Diff line number Diff line change 19
19
20
20
import org .openqa .selenium .internal .Require ;
21
21
22
+ import java .io .Serializable ;
22
23
import java .util .Comparator ;
23
24
import java .util .Objects ;
24
25
import java .util .UUID ;
25
26
26
- public class NodeId implements Comparable <NodeId > {
27
+ public class NodeId implements Comparable <NodeId >, Serializable {
27
28
28
29
private final UUID uuid ;
29
30
Original file line number Diff line number Diff line change 23
23
import org .openqa .selenium .json .JsonInput ;
24
24
import org .openqa .selenium .remote .SessionId ;
25
25
26
+ import java .io .Serializable ;
26
27
import java .net .URI ;
27
28
import java .time .Instant ;
28
29
import java .util .Map ;
36
37
* The serialized form is designed to mimic that of the return value of the New Session command, but
37
38
* an additional {@code uri} field must also be present.
38
39
*/
39
- public class Session {
40
+ public class Session implements Serializable {
40
41
41
42
private final SessionId id ;
42
43
private final URI uri ;
You can’t perform that action at this time.
0 commit comments