author | coleenp |
Wed, 30 Aug 2017 19:18:22 -0400 | |
changeset 47098 | e704f55561c3 |
parent 45434 | 4582657c7260 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
5506
diff
changeset
|
2 |
* Copyright (c) 1997, 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 java.security; |
|
27 |
||
28 |
/** |
|
29 |
* A GuardedObject is an object that is used to protect access to |
|
30 |
* another object. |
|
31 |
* |
|
32 |
* <p>A GuardedObject encapsulates a target object and a Guard object, |
|
33 |
* such that access to the target object is possible |
|
34 |
* only if the Guard object allows it. |
|
35 |
* Once an object is encapsulated by a GuardedObject, |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
5506
diff
changeset
|
36 |
* access to that object is controlled by the {@code getObject} |
2 | 37 |
* method, which invokes the |
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
5506
diff
changeset
|
38 |
* {@code checkGuard} method on the Guard object that is |
2 | 39 |
* guarding access. If access is not allowed, |
40 |
* an exception is thrown. |
|
41 |
* |
|
42 |
* @see Guard |
|
43 |
* @see Permission |
|
44 |
* |
|
45 |
* @author Roland Schemers |
|
46 |
* @author Li Gong |
|
45434
4582657c7260
8181082: class-level since tag issues in java.base & java.datatransfer module
mli
parents:
25859
diff
changeset
|
47 |
* @since 1.2 |
2 | 48 |
*/ |
49 |
||
50 |
public class GuardedObject implements java.io.Serializable { |
|
51 |
||
52 |
private static final long serialVersionUID = -5240450096227834308L; |
|
53 |
||
54 |
private Object object; // the object we are guarding |
|
55 |
private Guard guard; // the guard |
|
56 |
||
57 |
/** |
|
58 |
* Constructs a GuardedObject using the specified object and guard. |
|
59 |
* If the Guard object is null, then no restrictions will |
|
60 |
* be placed on who can access the object. |
|
61 |
* |
|
62 |
* @param object the object to be guarded. |
|
63 |
* |
|
64 |
* @param guard the Guard object that guards access to the object. |
|
65 |
*/ |
|
66 |
||
67 |
public GuardedObject(Object object, Guard guard) |
|
68 |
{ |
|
69 |
this.guard = guard; |
|
70 |
this.object = object; |
|
71 |
} |
|
72 |
||
73 |
/** |
|
74 |
* Retrieves the guarded object, or throws an exception if access |
|
75 |
* to the guarded object is denied by the guard. |
|
76 |
* |
|
77 |
* @return the guarded object. |
|
78 |
* |
|
79 |
* @exception SecurityException if access to the guarded object is |
|
80 |
* denied. |
|
81 |
*/ |
|
82 |
public Object getObject() |
|
83 |
throws SecurityException |
|
84 |
{ |
|
85 |
if (guard != null) |
|
86 |
guard.checkGuard(object); |
|
87 |
||
88 |
return object; |
|
89 |
} |
|
90 |
||
91 |
/** |
|
92 |
* Writes this object out to a stream (i.e., serializes it). |
|
93 |
* We check the guard if there is one. |
|
94 |
*/ |
|
95 |
private void writeObject(java.io.ObjectOutputStream oos) |
|
96 |
throws java.io.IOException |
|
97 |
{ |
|
98 |
if (guard != null) |
|
99 |
guard.checkGuard(object); |
|
100 |
||
101 |
oos.defaultWriteObject(); |
|
102 |
} |
|
103 |
} |