1 | public class MyInterfaceImpl implements MyInterface {
↵ | | 1 | public class Master implements Serializable {↵
|
2 | private String key1;
↵ | | 2 | private Long id;↵
|
3 | private String key2;
↵ | | 3 | private String name;↵
|
4 | private String name;↵ | | 4 | private ↵
|
5 |
↵ | | 5 | Detail detail;↵
|
6 | public String getKey1() {
↵ | | 6 | public Detail getDetail() {↵
|
7 | return key1;↵ | | 7 | return ↵
|
8 | }↵ | | |
|
9 |
↵ | | 8 | detail;↵
|
| | | 9 | }↵
|
10 | public void setKey1(String key1) {
↵ | | 10 | public void setDetail(Detail detail) {↵
|
11 | this.key1 = key1;↵ | | 11 | this.↵
|
12 | }↵ | | |
|
13 |
↵ | | 12 | detail = detail;↵
|
| | | 13 | }↵
|
14 | public String getKey2() {
↵ | | 14 | public Long getId() {↵
|
15 | return key2;↵ | | 15 | return ↵
|
16 | }↵ | | |
|
17 |
↵ | | 16 | id;↵
|
| | | 17 | }↵
|
18 | public void setKey2(String key2) {
↵ | | 18 | public void setId(Long id) {↵
|
19 | this.key2 = key2;↵ | | 19 | this.↵
|
20 | }↵ | | |
|
21 |
↵ | | 20 | id = id;↵
|
| | | 21 | }↵
|
22 | public String getName() {
↵ | | 22 | public String getName() {↵
|
23 | return name;
↵ | | 23 | return name;↵
|
24 | }↵ | | 24 | }↵
|
25 |
↵ | | |
|
26 | public void setName(String name) {
↵ | | 25 | public void setName(String name) {↵
|
27 | this.name = name;
↵ | | 26 | this.name = name;↵
|
28 | | | 27 |
|