Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/eventbus/client/eventpackages/SignInRequestEventPackage.java

Diff revisions: vs.
  @@ -1,37 +1,37 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.eventbus.client.eventpackages;
3 -
4 - import org.litesoft.GWT.eventbus.client.*;
5 - import org.litesoft.GWT.eventbus.client.nonpublic.*;
6 -
7 - public class SignInRequestEventPackage extends AuthenticationEventPackage {
8 - public static final String SubscribeWith = "SignInRequest";
9 -
10 - private String mLoginName;
11 - private String mPwd;
12 -
13 - /**
14 - * @deprecated GWT ONLY
15 - */
16 - public SignInRequestEventPackage() {
17 - }
18 -
19 - public SignInRequestEventPackage( EventBus pEventBus, String pLoginName, String pPwd ) {
20 - super( pEventBus.getForm(), SubscribeWith, null );
21 - mLoginName = pLoginName;
22 - mPwd = pPwd;
23 - }
24 -
25 - public String getLoginName() {
26 - return mLoginName;
27 - }
28 -
29 - public String getPassword() {
30 - return mPwd;
31 - }
32 -
33 - protected void augmentToString( StringBuilder pSB ) {
34 - super.augmentToString( pSB );
35 - add( pSB, mLoginName );
36 - }
37 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.eventbus.client.eventpackages;
3 +
4 + import org.litesoft.GWT.eventbus.client.*;
5 + import org.litesoft.GWT.eventbus.client.nonpublic.*;
6 +
7 + public class SignInRequestEventPackage extends AuthenticationEventPackage {
8 + public static final String SubscribeWith = "SignInRequest";
9 +
10 + private String mLoginName;
11 + private String mPwd;
12 +
13 + /**
14 + * @deprecated GWT ONLY
15 + */
16 + public SignInRequestEventPackage() {
17 + }
18 +
19 + public SignInRequestEventPackage( EventBus pEventBus, String pLoginName, String pPwd ) {
20 + super( pEventBus.getForm(), SubscribeWith, null );
21 + mLoginName = pLoginName;
22 + mPwd = pPwd;
23 + }
24 +
25 + public String getLoginName() {
26 + return mLoginName;
27 + }
28 +
29 + public String getPassword() {
30 + return mPwd;
31 + }
32 +
33 + protected void augmentToString( StringBuilder pSB ) {
34 + super.augmentToString( pSB );
35 + add( pSB, mLoginName );
36 + }
37 + }