View Javadoc
1   package org.oxerr.commons.ws.rs.bean;
2   
3   public class Bean {
4   
5   	private String f1;
6   
7   	private String f2;
8   
9   	public Bean() {
10  	}
11  
12  	public Bean(String f1, String f2) {
13  		this.f1 = f1;
14  		this.f2 = f2;
15  	}
16  
17  	public String getF1() {
18  		return f1;
19  	}
20  
21  	public void setF1(String f1) {
22  		this.f1 = f1;
23  	}
24  
25  	public String getF2() {
26  		return f2;
27  	}
28  
29  	public void setF2(String f2) {
30  		this.f2 = f2;
31  	}
32  
33  }