/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.pieShare.pieShareApp.service.configurationService.api; import java.io.File; /** * * @author Richard */ public interface IPieShareConfiguration { public File getWorkingDir(); public void setWorkingDir(File workingDir); public File getTmpDir(); public void setTmpDir(File tmpDir); public File getPwdFile(); public void setPwdFile(File pwdFile); }