Merge "Replicate demo/boot/portal_vm_init.sh"
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / EPUserAppRoles.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.domain;
21
22
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.Id;
26
27 import org.openecomp.portalsdk.core.domain.support.DomainVo;
28
29 import com.fasterxml.jackson.annotation.JsonInclude;
30
31 @Entity
32 @JsonInclude(JsonInclude.Include.NON_NULL)
33 public class EPUserAppRoles extends DomainVo {
34
35         private static final long serialVersionUID = -1484592641766545668L;
36
37         @Id
38         @Column(name ="role_id")
39         public Long roleId;
40         
41         @Id
42         @Column(name ="app_id")
43         public Long appId;
44         
45         public Long getRoleId() {
46                 return roleId;
47         }
48         public void setRoleId(Long roleId) {
49                 this.roleId = roleId;
50         }
51         public Long getAppId() {
52                 return appId;
53         }
54         public void setAppId(Long appId) {
55                 this.appId = appId;
56         }
57         
58         @Override
59         public String toString() {
60                 return "EpUserAppRoles [roleId=" + roleId + ", appId=" + appId + "]";
61         }
62 }
63