[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / EPEndpointAccount.java
1 package org.openecomp.portalapp.portal.domain;
2
3 import org.openecomp.portalsdk.core.domain.support.DomainVo;
4
5 public class EPEndpointAccount extends DomainVo {
6
7         private static final long serialVersionUID = 1L;
8
9         public EPEndpointAccount() {
10
11         }
12
13         private Long id;
14         private Long ep_id;
15         private Long account_id;
16
17         public Long getId() {
18                 return id;
19         }
20
21         public void setId(Long id) {
22                 this.id = id;
23         }
24
25         public Long getEp_id() {
26                 return ep_id;
27         }
28
29         public void setEp_id(Long ep_id) {
30                 this.ep_id = ep_id;
31         }
32
33         public Long getAccount_id() {
34                 return account_id;
35         }
36
37         public void setAccount_id(Long account_id) {
38                 this.account_id = account_id;
39         }
40
41         @Override
42         public String toString() {
43                 return "EPEndpointAccount [id=" + id + ", ep_id=" + ep_id + ", account_id=" + account_id + "]";
44         }
45
46 }