Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package org.litesoft.servlets;

import java.io.*;
import javax.servlet.http.*;

public class AuthenticationObject implements Serializable
{
    private static final String AUTHENTICATION = "Authentication";

    private static HttpSessionHelper.Factory FACTORY = new HttpSessionHelper.Factory()
    {
        public Object create()
        {
            return new AuthenticationObject();
        }
    };

    public static AuthenticationObject get( HttpSession pSession )
    {
        return (AuthenticationObject) HttpSessionHelper.get( pSession, FACTORY, AUTHENTICATION );
    }

    private volatile boolean mAuthenticated = false;
    private volatile String mAuthenticatedCookieValue;
    private volatile String mUserName;
    private volatile String mMessage;
    private volatile String mTarget;

    public String getAuthenticatedCookieValue()
    {
        return mAuthenticatedCookieValue;
    }

    public void setAuthenticatedCookieValue( String pAuthenticatedCookieValue )
    {
        mAuthenticatedCookieValue = pAuthenticatedCookieValue;
    }

    public String getUserName()
    {
        return mUserName;
    }

    public void setUserName( String pUserName )
    {
        mUserName = pUserName;
    }

    public String getMessage()
    {
        return mMessage;
    }

    public void setMessage( String pMessage )
    {
        mMessage = pMessage;
    }

    public String getTarget()
    {
        return mTarget;
    }

    public void setTarget( String pTarget )
    {
        mTarget = pTarget;
    }

    public boolean isAuthenticated()
    {
        return mAuthenticated;
    }

    public void setAuthenticated( boolean pAuthenticated )
    {
        mAuthenticated = pAuthenticated;
    }
}

Commits for litesoft/trunk/Java/core/Server/src/org/litesoft/servlets/AuthenticationObject.java

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000