nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / command / EPLoginBean.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.command;
21
22 import java.util.Set;
23
24 import org.openecomp.portalapp.portal.domain.EPUser;
25 import org.openecomp.portalsdk.core.domain.support.FusionCommand;
26
27 public class EPLoginBean extends FusionCommand {
28     private String loginId;
29     private String loginPwd;
30     private String hrid;
31     private String orgUserId;
32     private String siteAccess;
33     private String loginErrorMessage;
34
35     private EPUser user;
36     private Set<?>  menu;
37     private Set<?>  businessDirectMenu;
38
39     /**
40      * getLoginId
41      *
42      * @return String
43      */
44     public String getLoginId() {
45         return loginId;
46     }
47
48     /**
49      * getLoginPwd
50      *
51      * @return String
52      */
53     public String getLoginPwd() {
54         return loginPwd;
55     }
56
57     /**
58      * getMenu
59      *
60      * @return Set
61      */
62     public Set<?> getMenu() {
63         return menu;
64     }
65
66     /**
67      * getUser
68      *
69      * @return User
70      */
71     public EPUser getUser() {
72         return user;
73     }
74
75     /**
76      * getHrid
77      *
78      * @return String
79      */
80     public String getHrid() {
81         return hrid;
82     }
83
84     /**
85      * getSiteAccess
86      *
87      * @return String
88      */
89     public String getSiteAccess() {
90         return siteAccess;
91     }
92
93     /**
94      * getBusinessDirectMenu
95      *
96      * @return Set
97      */
98     public Set<?> getBusinessDirectMenu() {
99         return businessDirectMenu;
100     }
101
102     /**
103      * getLoginErrorMessage
104      *
105      * @return String
106      */
107     public String getLoginErrorMessage() {
108         return loginErrorMessage;
109     }
110
111     public String getOrgUserId() {
112         return orgUserId;
113     }
114
115     /**
116      * setLoginId
117      *
118      * @param loginId String
119      */
120     public void setLoginId(String loginId) {
121         this.loginId = loginId;
122     }
123
124     /**
125      * setLoginPwd
126      *
127      * @param loginPwd String
128      */
129     public void setLoginPwd(String loginPwd) {
130         this.loginPwd = loginPwd;
131     }
132
133     public void setMenu(Set<?> menu) {
134         this.menu = menu;
135     }
136
137     /**
138      * setUser
139      *
140      * @param user User
141      */
142     public void setUser(EPUser user) {
143         this.user = user;
144     }
145
146     /**
147      * setHrid
148      *
149      * @param hrid String
150      */
151     public void setHrid(String hrid) {
152         this.hrid = hrid;
153     }
154
155     /**
156      * setSiteAccess
157      *
158      * @param siteAccess String
159      */
160     public void setSiteAccess(String siteAccess) {
161         this.siteAccess = siteAccess;
162     }
163
164     /**
165      * setBusinessDirectMenu
166      *
167      * @param businessDirectMenu Set
168      */
169     public void setBusinessDirectMenu(Set<?> businessDirectMenu) {
170         this.businessDirectMenu = businessDirectMenu;
171     }
172
173     /**
174      * setLoginErrorMessage
175      *
176      * @param loginErrorMessage String
177      */
178     public void setLoginErrorMessage(String loginErrorMessage) {
179         this.loginErrorMessage = loginErrorMessage;
180     }
181
182     public void setOrgUserId(String orgUserId) {
183         this.orgUserId = orgUserId;
184     }
185 }
186