2023-09-17 22:13:42 +03:00
|
|
|
package analyzer.common;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
public class MessageJtoJ implements Serializable {
|
|
|
|
|
private String message;
|
|
|
|
|
private String command;
|
2024-10-14 15:19:13 +03:00
|
|
|
public MessageJtoJ(String m, String c) {
|
2023-09-17 22:13:42 +03:00
|
|
|
message = m;
|
|
|
|
|
command = c;
|
|
|
|
|
}
|
2024-10-14 15:19:13 +03:00
|
|
|
public String getMessage() {
|
|
|
|
|
return message;
|
|
|
|
|
}
|
|
|
|
|
public void setMessage(String m) {
|
|
|
|
|
message = m;
|
|
|
|
|
}
|
|
|
|
|
public String getCommand() {
|
|
|
|
|
return command;
|
|
|
|
|
}
|
|
|
|
|
public void setCommand(String c) {
|
|
|
|
|
message = c;
|
|
|
|
|
}
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|