author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 43243 | jdk/src/jdk.security.auth/share/classes/com/sun/security/auth/UnixNumericUserPrincipal.java@a48dab17a356 |
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) 2000, 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 |
/** |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
31 |
* This class implements the {@code Principal} interface |
2 | 32 |
* and represents a user's Unix identification number (UID). |
33 |
* |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
34 |
* <p> Principals such as this {@code UnixNumericUserPrincipal} |
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
35 |
* may be associated with a particular {@code Subject} |
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
36 |
* to augment that {@code Subject} with an additional |
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
37 |
* identity. Refer to the {@code Subject} class for more information |
2 | 38 |
* on how to achieve this. Authorization decisions can then be based upon |
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
39 |
* the Principals associated with a {@code Subject}. |
2 | 40 |
* |
41 |
* @see java.security.Principal |
|
42 |
* @see javax.security.auth.Subject |
|
43 |
*/ |
|
44 |
public class UnixNumericUserPrincipal implements |
|
45 |
Principal, |
|
46 |
java.io.Serializable { |
|
47 |
private static final long serialVersionUID = -4329764253802397821L; |
|
48 |
||
49 |
/** |
|
50 |
* @serial |
|
51 |
*/ |
|
52 |
private String name; |
|
53 |
||
54 |
/** |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
55 |
* Create a {@code UnixNumericUserPrincipal} using a |
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
56 |
* {@code String} representation of the |
2 | 57 |
* user's identification number (UID). |
58 |
* |
|
59 |
* @param name the user identification number (UID) for this user. |
|
60 |
* |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
61 |
* @exception NullPointerException if the {@code name} |
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
62 |
* is {@code null}. |
2 | 63 |
*/ |
64 |
public UnixNumericUserPrincipal(String name) { |
|
65 |
if (name == null) { |
|
66 |
java.text.MessageFormat form = new java.text.MessageFormat |
|
43243
a48dab17a356
8173024: Replace direct use of AuthResources resource bundle from jdk.security.auth
mchung
parents:
34894
diff
changeset
|
67 |
(sun.security.util.ResourcesMgr.getAuthResourceString |
a48dab17a356
8173024: Replace direct use of AuthResources resource bundle from jdk.security.auth
mchung
parents:
34894
diff
changeset
|
68 |
("invalid.null.input.value")); |
2 | 69 |
Object[] source = {"name"}; |
70 |
throw new NullPointerException(form.format(source)); |
|
71 |
} |
|
72 |
||
73 |
this.name = name; |
|
74 |
} |
|
75 |
||
76 |
/** |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
77 |
* Create a {@code UnixNumericUserPrincipal} using a |
2 | 78 |
* long representation of the user's identification number (UID). |
79 |
* |
|
80 |
* @param name the user identification number (UID) for this user |
|
81 |
* represented as a long. |
|
82 |
*/ |
|
83 |
public UnixNumericUserPrincipal(long name) { |
|
25186
63e1a2ec30f5
8048267: Replace uses of 'new Long()' with appropriate alternative across core classes
prappo
parents:
23010
diff
changeset
|
84 |
this.name = Long.toString(name); |
2 | 85 |
} |
86 |
||
87 |
/** |
|
88 |
* Return the user identification number (UID) for this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
89 |
* {@code UnixNumericUserPrincipal}. |
2 | 90 |
* |
91 |
* @return the user identification number (UID) for this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
92 |
* {@code UnixNumericUserPrincipal} |
2 | 93 |
*/ |
94 |
public String getName() { |
|
95 |
return name; |
|
96 |
} |
|
97 |
||
98 |
/** |
|
99 |
* Return the user identification number (UID) for this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
100 |
* {@code UnixNumericUserPrincipal} as a long. |
2 | 101 |
* |
102 |
* @return the user identification number (UID) for this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
103 |
* {@code UnixNumericUserPrincipal} as a long. |
2 | 104 |
*/ |
105 |
public long longValue() { |
|
25186
63e1a2ec30f5
8048267: Replace uses of 'new Long()' with appropriate alternative across core classes
prappo
parents:
23010
diff
changeset
|
106 |
return Long.parseLong(name); |
2 | 107 |
} |
108 |
||
109 |
/** |
|
110 |
* Return a string representation of this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
111 |
* {@code UnixNumericUserPrincipal}. |
2 | 112 |
* |
113 |
* @return a string representation of this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
114 |
* {@code UnixNumericUserPrincipal}. |
2 | 115 |
*/ |
116 |
public String toString() { |
|
117 |
java.text.MessageFormat form = new java.text.MessageFormat |
|
43243
a48dab17a356
8173024: Replace direct use of AuthResources resource bundle from jdk.security.auth
mchung
parents:
34894
diff
changeset
|
118 |
(sun.security.util.ResourcesMgr.getAuthResourceString |
a48dab17a356
8173024: Replace direct use of AuthResources resource bundle from jdk.security.auth
mchung
parents:
34894
diff
changeset
|
119 |
("UnixNumericUserPrincipal.name")); |
2 | 120 |
Object[] source = {name}; |
121 |
return form.format(source); |
|
122 |
} |
|
123 |
||
124 |
/** |
|
125 |
* Compares the specified Object with this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
126 |
* {@code UnixNumericUserPrincipal} |
2 | 127 |
* for equality. Returns true if the given object is also a |
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
128 |
* {@code UnixNumericUserPrincipal} and the two |
2 | 129 |
* UnixNumericUserPrincipals |
130 |
* have the same user identification number (UID). |
|
131 |
* |
|
132 |
* @param o Object to be compared for equality with this |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
133 |
* {@code UnixNumericUserPrincipal}. |
2 | 134 |
* |
28059
e576535359cc
8067377: My hobby: caning, then then canning, the the can-can
martin
parents:
25859
diff
changeset
|
135 |
* @return true if the specified Object is equal to this |
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
136 |
* {@code UnixNumericUserPrincipal}. |
2 | 137 |
*/ |
138 |
public boolean equals(Object o) { |
|
139 |
if (o == null) |
|
140 |
return false; |
|
141 |
||
142 |
if (this == o) |
|
143 |
return true; |
|
144 |
||
145 |
if (!(o instanceof UnixNumericUserPrincipal)) |
|
146 |
return false; |
|
147 |
UnixNumericUserPrincipal that = (UnixNumericUserPrincipal)o; |
|
148 |
||
149 |
if (this.getName().equals(that.getName())) |
|
150 |
return true; |
|
151 |
return false; |
|
152 |
} |
|
153 |
||
154 |
/** |
|
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
155 |
* Return a hash code for this {@code UnixNumericUserPrincipal}. |
2 | 156 |
* |
30044
bab15bbe2ca3
8078528: clean out tidy warnings from security.auth
avstepan
parents:
28059
diff
changeset
|
157 |
* @return a hash code for this {@code UnixNumericUserPrincipal}. |
2 | 158 |
*/ |
159 |
public int hashCode() { |
|
160 |
return name.hashCode(); |
|
161 |
} |
|
162 |
} |