1 package org.metricshub.ipmi.core.coding.commands.session;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 import org.metricshub.ipmi.core.coding.commands.ResponseData;
26
27
28
29
30
31 public class Rakp1ResponseData implements ResponseData {
32
33 private byte messageTag;
34
35 private byte statusCode;
36
37 private int remoteConsoleSessionId;
38
39 private byte[] managedSystemRandomNumber;
40
41 private byte[] managedSystemGuid;
42
43 public void setMessageTag(byte messageTag) {
44 this.messageTag = messageTag;
45 }
46
47 public byte getMessageTag() {
48 return messageTag;
49 }
50
51 public void setStatusCode(byte statusCode) {
52 this.statusCode = statusCode;
53 }
54
55 public byte getStatusCode() {
56 return statusCode;
57 }
58
59 public void setRemoteConsoleSessionId(int remoteConsoleSessionId) {
60 this.remoteConsoleSessionId = remoteConsoleSessionId;
61 }
62
63 public int getRemoteConsoleSessionId() {
64 return remoteConsoleSessionId;
65 }
66
67 public void setManagedSystemGuid(byte[] managedSystemGuid) {
68 this.managedSystemGuid = managedSystemGuid;
69 }
70
71 public byte[] getManagedSystemGuid() {
72 return managedSystemGuid;
73 }
74
75 public void setManagedSystemRandomNumber(byte[] randomNumber) {
76 this.managedSystemRandomNumber = randomNumber;
77 }
78
79 public byte[] getManagedSystemRandomNumber() {
80 return managedSystemRandomNumber;
81 }
82 }