}
    return contents.toString();
  }
  public ISequence convertBusinessToStored(ISequence sequence) {
    ISequence storedSequence = new SequenceStoreObject();
    storedSequence.setDescription(sequence.getDescription());
    storedSequence.setLogEntries(sequence.getLogEntries());
    storedSequence.setStartTime(sequence.getStartTime());
    storedSequence.setEndTime(sequence.getEndTime());
    storedSequence.setLive(sequence.isLive());
    return storedSequence;
  }