author | martin |
Thu, 30 Oct 2014 07:31:41 -0700 | |
changeset 28059 | e576535359cc |
parent 25859 | 3317bb8137f4 |
child 30044 | bab15bbe2ca3 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
20742
diff
changeset
|
2 |
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package com.sun.security.auth; |
|
27 |
||
28 |
import java.security.Principal; |
|
29 |
||
30 |
/** |
|
31 |
* <p> This class implements the <code>Principal</code> interface |
|
32 |
* and represents a Windows NT user. |
|
33 |
* |
|
34 |
* <p> Principals such as this <code>NTUserPrincipal</code> |
|
35 |
* may be associated with a particular <code>Subject</code> |
|
36 |
* to augment that <code>Subject</code> with an additional |
|
37 |
* identity. Refer to the <code>Subject</code> class for more information |
|
38 |
* on how to achieve this. Authorization decisions can then be based upon |
|
39 |
* the Principals associated with a <code>Subject</code>. |
|
40 |
* |
|
41 |
* @see java.security.Principal |
|
42 |
* @see javax.security.auth.Subject |
|
43 |
*/ |
|
20742
4ae78e8060d6
8008662: Add @jdk.Exported to JDK-specific/exported APIs
alanb
parents:
7179
diff
changeset
|
44 |
@jdk.Exported |
2 | 45 |
public class NTUserPrincipal implements Principal, java.io.Serializable { |
46 |
||
47 |
private static final long serialVersionUID = -8737649811939033735L; |
|
48 |
||
49 |
/** |
|
50 |
* @serial |
|
51 |
*/ |
|
52 |
private String name; |
|
53 |
||
54 |
/** |
|
55 |
* Create an <code>NTUserPrincipal</code> with a Windows NT username. |
|
56 |
* |
|
57 |
* <p> |
|
58 |
* |
|
59 |
* @param name the Windows NT username for this user. <p> |
|
60 |
* |
|
61 |
* @exception NullPointerException if the <code>name</code> |
|
62 |
* is <code>null</code>. |
|
63 |
*/ |
|
64 |
public NTUserPrincipal(String name) { |
|
65 |
if (name == null) { |
|
66 |
java.text.MessageFormat form = new java.text.MessageFormat |
|
67 |
(sun.security.util.ResourcesMgr.getString |
|
7179
4afb81e50183
6987827: security/util/Resources.java needs improvement
weijun
parents:
5506
diff
changeset
|
68 |
("invalid.null.input.value", |
2 | 69 |
"sun.security.util.AuthResources")); |
70 |
Object[] source = {"name"}; |
|
71 |
throw new NullPointerException(form.format(source)); |
|
72 |
} |
|
73 |
this.name = name; |
|
74 |
} |
|
75 |
||
76 |
/** |
|
77 |
* Return the Windows NT username for this <code>NTPrincipal</code>. |
|
78 |
* |
|
79 |
* <p> |
|
80 |
* |
|
81 |
* @return the Windows NT username for this <code>NTPrincipal</code> |
|
82 |
*/ |
|
83 |
public String getName() { |
|
84 |
return name; |
|
85 |
} |
|
86 |
||
87 |
/** |
|
88 |
* Return a string representation of this <code>NTPrincipal</code>. |
|
89 |
* |
|
90 |
* <p> |
|
91 |
* |
|
92 |
* @return a string representation of this <code>NTPrincipal</code>. |
|
93 |
*/ |
|
94 |
public String toString() { |
|
95 |
java.text.MessageFormat form = new java.text.MessageFormat |
|
96 |
(sun.security.util.ResourcesMgr.getString |
|
7179
4afb81e50183
6987827: security/util/Resources.java needs improvement
weijun
parents:
5506
diff
changeset
|
97 |
("NTUserPrincipal.name", |
2 | 98 |
"sun.security.util.AuthResources")); |
99 |
Object[] source = {name}; |
|
100 |
return form.format(source); |
|
101 |
} |
|
102 |
||
103 |
/** |
|
104 |
* Compares the specified Object with this <code>NTUserPrincipal</code> |
|
105 |
* for equality. Returns true if the given object is also a |
|
106 |
* <code>NTUserPrincipal</code> and the two NTUserPrincipals |
|
107 |
* have the same name. |
|
108 |
* |
|
109 |
* <p> |
|
110 |
* |
|
111 |
* @param o Object to be compared for equality with this |
|
112 |
* <code>NTPrincipal</code>. |
|
113 |
* |
|
28059
e576535359cc
8067377: My hobby: caning, then then canning, the the can-can
martin
parents:
25859
diff
changeset
|
114 |
* @return true if the specified Object is equal to this |
2 | 115 |
* <code>NTPrincipal</code>. |
116 |
*/ |
|
117 |
public boolean equals(Object o) { |
|
118 |
if (o == null) |
|
119 |
return false; |
|
120 |
||
121 |
if (this == o) |
|
122 |
return true; |
|
123 |
||
124 |
if (!(o instanceof NTUserPrincipal)) |
|
125 |
return false; |
|
126 |
NTUserPrincipal that = (NTUserPrincipal)o; |
|
127 |
||
128 |
if (name.equals(that.getName())) |
|
129 |
return true; |
|
130 |
return false; |
|
131 |
} |
|
132 |
||
133 |
/** |
|
134 |
* Return a hash code for this <code>NTUserPrincipal</code>. |
|
135 |
* |
|
136 |
* <p> |
|
137 |
* |
|
138 |
* @return a hash code for this <code>NTUserPrincipal</code>. |
|
139 |
*/ |
|
140 |
public int hashCode() { |
|
141 |
return this.getName().hashCode(); |
|
142 |
} |
|
143 |
} |