OPENJPA-1510: Typographical changes to Encryption Provider section.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@924002 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Milosz Tylenda 2010-03-16 21:41:34 +00:00
parent db7390af62
commit 6bc5ff8d3c
1 changed files with 9 additions and 7 deletions

View File

@ -22,25 +22,27 @@
Encryption Provider
</title>
<para>
OpenJPA provides an interface for a provider to implement to allow
connection passwords to be encrypted. Whenever a connection password
is needed, the decrypt(String) method will be invoked. See
OpenJPA provides an interface for a provider to implement
connection password encryption. Whenever a connection password
is needed, the <methodname>decrypt(String)</methodname> method will be invoked. See
<ulink url="../javadoc/org/apache/openjpa/lib/encryption/EncryptionProvider.html">
<classname>org.apache.openjpa.lib.encryption.EncryptionProvider</classname>
</ulink> for the detailed javadoc.
</ulink> for the detailed Javadoc.
</para>
<para>
Notes:
<itemizedlist>
<listitem>
<para>
It is an OpenJPA users responsibility to implement the EncryptionProvider
interface. There is not a default implementation.
It is an OpenJPA user responsibility to implement the
<classname>EncryptionProvider</classname>
interface. There is no default implementation.
</para>
</listitem>
<listitem>
<para>
The interface has an encrypt(String) method, but it is not called by the OpenJPA runtime.
The interface has an <methodname>encrypt(String)</methodname> method,
but it is not called by the OpenJPA runtime.
</para>
</listitem>
</itemizedlist>