public void setParameters(Hashtable parameters)
throws ServiceParameterErrorException, ServiceParameterMissingException {
storeDir = (String) parameters.get(STORE_DIR_PARAMETER);
if (storeDir == null) {
throw new ServiceParameterMissingException(this, STORE_DIR_PARAMETER);
}
try {
fileSequence = new FileSequence(storeDir, new TxLogger(getLogger(), LOG_CHANNEL));
getLogger().log("File Sequence Store configured to " + storeDir, LOG_CHANNEL, Logger.INFO);