001/**
002 * Copyright 2005-2015 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.web.login;
017
018
019import org.kuali.rice.krad.uif.component.RequestParameter;
020import org.kuali.rice.krad.web.bind.RequestAccessible;
021import org.kuali.rice.krad.web.form.UifFormBase;
022
023/**
024 * Basic form for Dummy Login.
025 *
026 * @author Kuali Rice Team (rice.collab@kuali.org)
027 */
028public class DummyLoginForm extends UifFormBase {
029    private static final long serialVersionUID =  -7525378097732816418L;
030
031    protected String login_user;
032    protected String login_pw;
033
034    protected String backdoorId;
035
036    @RequestAccessible
037    @RequestParameter
038    protected String login_message;
039
040    public DummyLoginForm() {
041        super();
042
043        login_message = "";
044    }
045
046    public String getLogin_user() {
047        return login_user;
048    }
049
050    public void setLogin_user(String login_user) {
051        this.login_user = login_user;
052    }
053
054    public String getLogin_pw() {
055        return login_pw;
056    }
057
058    public void setLogin_pw(String login_pw) {
059        this.login_pw = login_pw;
060    }
061
062    public String getLogin_message() {
063        return login_message;
064    }
065
066    public void setLogin_message(String login_message) {
067        this.login_message = login_message;
068    }
069
070    public String getBackdoorId() { return backdoorId; }
071
072    public void setBackdoorId(String id) {
073        backdoorId = id;
074    }
075}