Update Java-SecurityManager.xml - title case
This commit is contained in:
parent
96d02b8f9b
commit
fc1c73f782
1 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
||||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
||||||
]>
|
]>
|
||||||
<section id="sect-Defensive_Coding-Java-SecurityManager">
|
<section id="sect-Defensive_Coding-Java-SecurityManager">
|
||||||
<title>Interacting with the security manager</title>
|
<title>Interacting with the Security Manager</title>
|
||||||
<para>
|
<para>
|
||||||
The Java platform is largely implemented in the Java language
|
The Java platform is largely implemented in the Java language
|
||||||
itself. Therefore, within the same JVM, code runs which is part
|
itself. Therefore, within the same JVM, code runs which is part
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<section id="sect-Defensive_Coding-Java-SecurityManager-Compatible">
|
<section id="sect-Defensive_Coding-Java-SecurityManager-Compatible">
|
||||||
<title>Security manager compatibility</title>
|
<title>Security Manager Compatibility</title>
|
||||||
<para>
|
<para>
|
||||||
A lot of code can run without any additional permissions at all,
|
A lot of code can run without any additional permissions at all,
|
||||||
with little changes. The following guidelines should help to
|
with little changes. The following guidelines should help to
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="sect-Defensive_Coding-Java-SecurityManager-Activate">
|
<section id="sect-Defensive_Coding-Java-SecurityManager-Activate">
|
||||||
<title>Activating the security manager</title>
|
<title>Activating the Security Manager</title>
|
||||||
<para>
|
<para>
|
||||||
The usual command to launch a Java application,
|
The usual command to launch a Java application,
|
||||||
<command>java</command>, does not activate the security manager.
|
<command>java</command>, does not activate the security manager.
|
||||||
|
@ -118,7 +118,7 @@ grant {
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="sect-Defensive_Coding-Java-SecurityManager-Unprivileged">
|
<section id="sect-Defensive_Coding-Java-SecurityManager-Unprivileged">
|
||||||
<title>Reducing trust in code</title>
|
<title>Reducing Trust in Code</title>
|
||||||
<para>
|
<para>
|
||||||
<xref linkend="ex-Defensive_Coding-Java-SecurityManager-Unprivileged"/>
|
<xref linkend="ex-Defensive_Coding-Java-SecurityManager-Unprivileged"/>
|
||||||
shows how to run a piece code of with reduced privileges.
|
shows how to run a piece code of with reduced privileges.
|
||||||
|
@ -176,7 +176,7 @@ grant {
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="sect-Defensive_Coding-Java-SecurityManager-Privileged">
|
<section id="sect-Defensive_Coding-Java-SecurityManager-Privileged">
|
||||||
<title>Re-gaining privileges</title>
|
<title>Re-gaining Privileges</title>
|
||||||
<para>
|
<para>
|
||||||
Ordinarily, when trusted code is called from untrusted code, it
|
Ordinarily, when trusted code is called from untrusted code, it
|
||||||
loses its privileges (because of the untrusted stack frames
|
loses its privileges (because of the untrusted stack frames
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue