KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > security > SimpleSubject


1 /*
2  * Copyright 2004 The Apache Software Foundation or its licensors, as
3  * applicable.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14  * implied.
15  *
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */

19 package gcc.security;
20
21 public class SimpleSubject
22 {
23     // -----------------------------------------------------------------------
24
// public data
25
// -----------------------------------------------------------------------
26

27     public static final int FLAG_SESSION_MANAGER = 1;
28
29     // -----------------------------------------------------------------------
30
// private data
31
// -----------------------------------------------------------------------
32

33     private static ThreadLocal _current = new ThreadLocal();
34
35     private String _username;
36
37     private String _password;
38
39     private int _flags;
40
41     // -----------------------------------------------------------------------
42
// public methods
43
// -----------------------------------------------------------------------
44

45     public static SimpleSubject getCurrent()
46     {
47         return (SimpleSubject)_current.get();
48     }
49
50     public static void setCurrent(SimpleSubject subject)
51     {
52         _current.set(subject);
53     }
54
55     public SimpleSubject(String username, String password)
56     {
57         _username = username;
58         _password = password;
59     }
60
61     public String getUsername()
62     {
63         return _username;
64     }
65
66     public String getPassword()
67     {
68         return _password;
69     }
70
71     public int getFlags()
72     {
73         return _flags;
74     }
75
76     public void setFlags(int flags)
77     {
78         _flags = flags;
79     }
80 }
81
Popular Tags