start of new file
[IRC.git] / Robust / src / Benchmarks / MapReduce / Java / Configured.java
1 //package mapreduce;
2
3 public class Configured {
4     
5     Configuration conf;
6     
7     public Configured() {
8         this.conf = null;
9     }
10     
11     public Configured(Configuration conf) {
12         this.conf = conf;
13     }
14     
15     public Configuration getConf() {
16         return this.conf;
17     }
18     
19     public void setConf(Configuration conf) {
20         this.conf = conf;
21     }
22 }