Introduce JXL DAO support
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jxl / src / test / java / org / argeo / server / jxl / dao / SimpleObject.java
index ae5aea50dd1b6f54ca829246526983149cffd091..f041667893aaf19c0ecac75ade0e4cde08ae1bcf 100644 (file)
@@ -4,6 +4,7 @@ public class SimpleObject {
        private String string;
        private Integer integer;
        private OtherObject otherObject;
+       private OtherObject anotherObject;
 
        public String getString() {
                return string;
@@ -28,4 +29,12 @@ public class SimpleObject {
        public void setOtherObject(OtherObject otherObject) {
                this.otherObject = otherObject;
        }
+
+       public OtherObject getAnotherObject() {
+               return anotherObject;
+       }
+
+       public void setAnotherObject(OtherObject anotherObject) {
+               this.anotherObject = anotherObject;
+       }
 }