lor6 04fa1782a2 reladomo example (#2469)
* reladomo example

* fix formatting

* add plugin versions

* fix closing streams
2017-08-21 20:25:12 +02:00

17 lines
367 B
Java

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);
}
}