ConnectQosData connectQosData = glob.getConnectQosFactory().readObject(qos);
return new MsgQueueConnectEntry(glob, PriorityEnum.toPriorityEnum(priority), storageId,
new Timestamp(timestamp), sizeInBytes, connectQosData);
}
else if (methodName == MethodName.DISCONNECT) {
DisconnectQos disconnectQos = new DisconnectQos(glob, glob.getDisconnectQosFactory().readObject(qos));
return new MsgQueueDisconnectEntry(glob, PriorityEnum.toPriorityEnum(priority), storageId,
new Timestamp(timestamp), sizeInBytes, disconnectQos);
}
else if (methodName == MethodName.DUMMY) { // for testsuite only
DummyEntry entry = null;