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