Java tutorial
/* * * [y] hybris Platform * * Copyright (c) 2000-2014 hybris AG * All rights reserved. * * This software is the confidential and proprietary information of hybris * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with the terms of the * license agreement you entered into with hybris. * * */ package de.hybris.platform.licence.sap; import de.hybris.bootstrap.config.ConfigUtil; import java.io.File; import org.apache.commons.io.FileUtils; /** * Property based persistence for testing purposes. */ public class PropertyBasedTestPersistence extends DefaultPersistence { private static final String FILE_NAME = ConfigUtil.getPlatformConfig(DefaultPersistence.class).getSystemConfig() .getTempDir() + "/testPersistence.properties"; @Override String getPropsFileName() { return FILE_NAME; } public void removePersistenceFile() { final File file = new File(FILE_NAME); FileUtils.deleteQuietly(file); } }