BAEL-2800: Moved core-java-collections-map to java-collections-maps-2

This commit is contained in:
eric-martin
2019-04-24 22:53:09 -05:00
parent 9ba9b3d1fc
commit 156f9b6906
7 changed files with 16 additions and 89 deletions
@@ -0,0 +1,28 @@
package com.baeldung.map;
import java.io.Serializable;
public class Employee implements Serializable{
private String name;
public Employee(String name) {
super();
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return this.name;
}
}