[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / EPUserAppRolesRequest.java
1 /*-\r
2  * ================================================================================\r
3  * ECOMP Portal\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ================================================================================\r
19  */\r
20 package org.openecomp.portalapp.portal.domain;\r
21 \r
22 \r
23 import java.util.Date;\r
24 import java.util.Set;\r
25 \r
26 import org.openecomp.portalsdk.core.domain.support.DomainVo;\r
27 \r
28 \r
29 public class EPUserAppRolesRequest extends DomainVo {\r
30         \r
31         private static final long serialVersionUID = -7225288307806389019L;\r
32         private Long userId;\r
33         private Long appId;\r
34         private Date createdDate;\r
35         private Date updatedDate;\r
36         private String requestStatus;\r
37         \r
38         private Set<EPUserAppRolesRequestDetail> epRequestIdDetail;\r
39 \r
40         public final Long getUserId() {\r
41                 return userId;\r
42         }\r
43 \r
44         public final void setUserId(Long userId) {\r
45                 this.userId = userId;\r
46         }\r
47 \r
48         public final Long getAppId() {\r
49                 return appId;\r
50         }\r
51 \r
52         public final void setAppId(Long appId) {\r
53                 this.appId = appId;\r
54         }\r
55 \r
56         public final Date getCreatedDate() {\r
57                 return createdDate;\r
58         }\r
59 \r
60         public final void setCreatedDate(Date createdDate) {\r
61                 this.createdDate = createdDate;\r
62         }\r
63 \r
64         public final Date getUpdatedDate() {\r
65                 return updatedDate;\r
66         }\r
67 \r
68         public final void setUpdatedDate(Date updatedDate) {\r
69                 this.updatedDate = updatedDate;\r
70         }\r
71 \r
72         public final String getRequestStatus() {\r
73                 return requestStatus;\r
74         }\r
75 \r
76         public final void setRequestStatus(String requestStatus) {\r
77                 this.requestStatus = requestStatus;\r
78         }\r
79 \r
80         public final Set<EPUserAppRolesRequestDetail> getEpRequestIdDetail() {\r
81                 return epRequestIdDetail;\r
82         }\r
83 \r
84         public final void setEpRequestIdDetail(Set<EPUserAppRolesRequestDetail> epMyLoginsDetail) {\r
85                 this.epRequestIdDetail = epMyLoginsDetail;\r
86         }\r
87 }\r