View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krad.web.login;
17  
18  
19  import org.kuali.rice.krad.uif.component.RequestParameter;
20  import org.kuali.rice.krad.web.bind.RequestAccessible;
21  import org.kuali.rice.krad.web.form.UifFormBase;
22  
23  /**
24   * Basic form for Dummy Login.
25   *
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public class DummyLoginForm extends UifFormBase {
29      private static final long serialVersionUID =  -7525378097732816418L;
30  
31      protected String login_user;
32      protected String login_pw;
33  
34      protected String backdoorId;
35  
36      @RequestAccessible
37      @RequestParameter
38      protected String login_message;
39  
40      public DummyLoginForm() {
41          super();
42  
43          login_message = "";
44      }
45  
46      public String getLogin_user() {
47          return login_user;
48      }
49  
50      public void setLogin_user(String login_user) {
51          this.login_user = login_user;
52      }
53  
54      public String getLogin_pw() {
55          return login_pw;
56      }
57  
58      public void setLogin_pw(String login_pw) {
59          this.login_pw = login_pw;
60      }
61  
62      public String getLogin_message() {
63          return login_message;
64      }
65  
66      public void setLogin_message(String login_message) {
67          this.login_message = login_message;
68      }
69  
70      public String getBackdoorId() { return backdoorId; }
71  
72      public void setBackdoorId(String id) {
73          backdoorId = id;
74      }
75  }