blob: 5ad7b3cfdfe742a815bd202e76f706a3f2a4370b [file] [log] [blame]
package org.eclipse.osee.ote.remote.messages;
import org.eclipse.osee.ote.message.elements.StringElement;
import org.eclipse.osee.ote.message.event.OteEventMessage;
public class RunTestsIsDone extends OteEventMessage {
public static String TOPIC = "ote/message/runtests/isdone";
private static int SIZE = 256;
public StringElement GUID;
public RunTestsIsDone() {
super("MESSAGE_META_DATA_STAT", TOPIC, SIZE);
GUID = new StringElement(this, "MESSAGE", getDefaultMessageData(), 0, 0, OteEventMessage.sizeBytesBits(256));
getDefaultMessageData().getMsgHeader().RESPONSE_TOPIC.setValue(BooleanResponse.TOPIC);
}
public RunTestsIsDone(byte[] bytes) {
this();
setData(bytes);
}
}