1 package org.org.usurper.dummydomain;
2
3 import java.math.BigInteger;
4
5 import org.apache.commons.lang.builder.ToStringBuilder;
6 import org.apache.commons.lang.builder.ToStringStyle;
7
8
9
10
11 public class FcknVO {
12 private BigInteger bigIntField;
13
14 private BigInteger bigIntField2;
15
16 public BigInteger getBigIntField2() {
17 return bigIntField2;
18 }
19
20 public void setBigIntField2(BigInteger bigIntField2) {
21 this.bigIntField2 = bigIntField2;
22 }
23
24 public BigInteger getBigIntField() {
25 return bigIntField;
26 }
27
28 public void setBigIntField(BigInteger bigIntField) {
29 this.bigIntField = bigIntField;
30 }
31
32
33
34
35 public String toString() {
36 return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("bigIntField2", this.bigIntField2).append("bigIntField", this.bigIntField).toString();
37 }
38
39 }