1 | public class AddressImpl implements Address {
↵ | | 1 | public class Transaction {↵
|
|
2 | private Long id;
↵ | | 2 | private Long id;↵
|
3 | private String addressType;↵ | | 3 | private String ↵
|
4 | private Server server;↵ | | |
|
5 |
↵ | | 4 | description;↵
|
| | | 5 | private MonetoryAmount value;↵
|
| | | 6 | ↵
|
6 | public Long getId() {
↵ | | 7 | public String getDescription() {↵
|
7 | return id;↵ | | 8 | return ↵
|
8 | }↵ | | |
|
|
9 | public void setId(Long id↵ | | 9 | description;↵
|
| | | 10 | }↵
|
| | | 11 | ↵
|
10 | ) {
↵ | | 12 | public void setDescription(String description) {↵
|
11 | this.id = id;↵ | | 13 | this.↵
|
12 | }↵ | | |
|
13 |
↵ | | 14 | description = description;↵
|
| | | 15 | }↵
|
| | | 16 | ↵
|
14 | public String getAddressType() {
↵ | | 17 | public Long getId() {↵
|
15 | return addressType;↵ | | 18 | return ↵
|
16 | }↵ | | |
|
17 |
↵ | | 19 | id;↵
|
| | | 20 | }↵
|
| | | 21 | ↵
|
18 | public void setAddressType(String addressType) {
↵ | | 22 | public void setId(Long id) {↵
|
19 | this.addressType = addressType;↵ | | 23 | this.↵
|
20 | }↵ | | |
|
|
21 | public Server getServer↵ | | 24 | id = id;↵
|
| | | 25 | }↵
|
| | | 26 | ↵
|
22 | () {
↵ | | 27 | public MonetoryAmount getValue() {↵
|
23 | return server;↵ | | 28 | return ↵
|
24 | }↵ | | |
|
25 |
↵ | | 29 | value;↵
|
| | | 30 | }↵
|
| | | 31 | ↵
|
26 | public void setServer(Server server) {
↵ | | 32 | public void setValue(MonetoryAmount value) {↵
|
27 | this.server = server;
↵ | | 33 | this.value = value;↵
|
28 | | | 34 |
|