1   package org.org.usurper.dummydomain;
2   
3   import org.apache.commons.lang.builder.ToStringBuilder;
4   import org.apache.commons.lang.builder.ToStringStyle;
5   
6   /**
7    * @author pagregoire
8    */
9   
10  public class DummyVOWithEnum {
11      public enum EnumProperty {
12          VALUE1, VALUE2, VALUE3, VALUE4
13      }
14  
15      public enum EnumProperty2 {
16          VALUE5, VALUE6, VALUE7, VALUE8
17      }
18  
19      private EnumProperty enumProperty;
20  
21      public EnumProperty getEnumProperty() {
22          return this.enumProperty;
23      }
24  
25      public void setEnumProperty(EnumProperty enumProperty) {
26          this.enumProperty = enumProperty;
27      }
28  
29      /**
30       * @see java.lang.Object#toString()
31       */
32      public String toString() {
33          return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("enumProperty", this.enumProperty).toString();
34      }
35  }