|
93 | 93 | * manager to be set dynamically by invoking the |
94 | 94 | * {@link System#setSecurityManager(SecurityManager) setSecurityManager} method. |
95 | 95 | * In the JDK implementation, the default value of the |
96 | | - * {@systemProperty java.security.manager} system property, if not set, is |
| 96 | + * {@code java.security.manager} system property, if not set, is |
97 | 97 | * the special token "{@code disallow}". If the Java virtual machine is |
98 | | - * started with the {@systemProperty java.security.manager} system property |
| 98 | + * started with the {@code java.security.manager} system property |
99 | 99 | * not set or set to "{@code disallow}" then a security manager will not be |
100 | 100 | * set at startup and cannot be set dynamically (the |
101 | 101 | * {@link System#setSecurityManager(SecurityManager) setSecurityManager} |
102 | 102 | * method will throw an {@code UnsupportedOperationException}). If the |
103 | | - * {@systemProperty java.security.manager} system property is set to the |
| 103 | + * {@code java.security.manager} system property is set to the |
104 | 104 | * special token "{@code allow}", then a security manager will not be set at |
105 | 105 | * startup but can be set dynamically. Finally, if the |
106 | | - * {@systemProperty java.security.manager} system property is set to the |
| 106 | + * {@code java.security.manager} system property is set to the |
107 | 107 | * class name of the security manager, or to the empty String ("") or the |
108 | 108 | * special token "{@code default}", then a security manager is set at startup |
109 | 109 | * (as described previously) and can also be subsequently replaced (or |
110 | 110 | * disabled) dynamically (subject to the policy of the currently installed |
111 | 111 | * security manager). The following table illustrates the behavior of the JDK |
112 | 112 | * implementation for the different settings of the |
113 | | - * {@systemProperty java.security.manager} system property: |
| 113 | + * {@code java.security.manager} system property: |
114 | 114 | * <table class="striped"> |
115 | 115 | * <caption style="display:none">property value, |
116 | 116 | * the SecurityManager set at startup, |
|
0 commit comments