public TourneyRecord (TourneyConfig tourneyConfig)
{
this(tourneyConfig.tourneyId);
ByteArrayOutputStream bstream = new ByteArrayOutputStream();
ObjectOutputStream ostream = new ObjectOutputStream(bstream);
try {
ostream.writeObject(config);
config = bstream.toByteArray();
} catch (IOException e) {
log.warning("Error writing TourneyConfig to byte array [e=" + e + "].");
}