signinevent.java

来自「<Java网络程序设计 J2EE>随书源码」· Java 代码 · 共 38 行

JAVA
38
字号
/* */package org.impact.stars.control.event;/** * This event is sent from the web tier to the EJB Controller to * notify the EJB Controller that a user has logged into the * application. */public class SigninEvent extends StarsEventSupport {    private String userName;    private String password;    public SigninEvent(String userName, String password) {        this.userName = userName;        this.password = password;    }    public String getUserName() {        return userName;    }    public String getPassword() {        return password;    }    public String getEventName() {        return "java:comp/env/event/SigninEvent";    }    public String toString() {        return "SigninEvent: userName=" + userName + ", password=" + password;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?