reladomo example (#2469)

* reladomo example

* fix formatting

* add plugin versions

* fix closing streams
This commit is contained in:
lor6
2017-08-21 21:25:12 +03:00
committed by Grzegorz Piwowarek
parent 6d7fa197dd
commit 04fa1782a2
16 changed files with 415 additions and 2 deletions
@@ -0,0 +1,16 @@
package com.baeldung.reladomo;
public class Employee extends EmployeeAbstract
{
public Employee()
{
super();
// You must not modify this constructor. Mithra calls this internally.
// You can call this constructor. You can also add new constructors.
}
public Employee(long id, String name){
super();
this.setId(id);
this.setName(name);
}
}