OSDN Git Service

workerのパッケージを移動
[coroid/inqubus.git] / frontend / src / saccubus / worker / classic / profile / GeneralSetting.java
1 /* $Id$ */
2 package saccubus.worker.classic.profile;
3
4 import java.io.File;
5
6 public class GeneralSetting implements saccubus.worker.profile.GeneralProfile {
7
8     private final File tempDir;
9
10     public GeneralSetting(File tempDir) {
11         this.tempDir = tempDir;
12     }
13
14     @Override
15     public String getReplaceFrom() {
16         throw new UnsupportedOperationException("Not supported yet.");
17     }
18
19     @Override
20     public String getReplaceTo() {
21         throw new UnsupportedOperationException("Not supported yet.");
22     }
23 }