[jbosscache-commits] JBoss Cache SVN: r7917 - enterprise-docs/tags/JBoss_EAP_4_3/Cache_Pojo_Cache_Guide/de-DE.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Thu Mar 19 03:30:49 EDT 2009


Author: jdimanos at jboss.com
Date: 2009-03-19 03:30:49 -0400 (Thu, 19 Mar 2009)
New Revision: 7917

Modified:
   enterprise-docs/tags/JBoss_EAP_4_3/Cache_Pojo_Cache_Guide/de-DE/Api.po
Log:
update

Modified: enterprise-docs/tags/JBoss_EAP_4_3/Cache_Pojo_Cache_Guide/de-DE/Api.po
===================================================================
--- enterprise-docs/tags/JBoss_EAP_4_3/Cache_Pojo_Cache_Guide/de-DE/Api.po	2009-03-19 07:30:26 UTC (rev 7916)
+++ enterprise-docs/tags/JBoss_EAP_4_3/Cache_Pojo_Cache_Guide/de-DE/Api.po	2009-03-19 07:30:49 UTC (rev 7917)
@@ -8,7 +8,7 @@
 "Project-Id-Version: Api\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n"
 "POT-Creation-Date: 2008-09-21 04:57+0000\n"
-"PO-Revision-Date: 2009-03-19 18:29+1100\n"
+"PO-Revision-Date: 2009-03-19 18:30+1100\n"
 "Last-Translator: \n"
 "Language-Team:  <en at li.org>\n"
 "MIME-Version: 1.0\n"
@@ -53,6 +53,13 @@
 "*/\n"
 "Object putObject(Fqn fqn, Object pojo) throws CacheException;"
 msgstr ""
+"/*\n"
+" * @param fqn The fqn instance to associate with the object in the cache.\n"
+" * @param pojo aop-enabled object to be inserted into the cache. If null,\n"
+" *            it will nullify the fqn node.\n"
+" * @throws CacheException\n"
+"*/\n"
+"Object putObject(Fqn fqn, Object pojo) throws CacheException;"
 
 #. Tag: para
 #: Api.xml:11
@@ -133,6 +140,16 @@
 " */\n"
 "Object removeObject(Fqn fqn) throws CacheException;"
 msgstr ""
+"/**\n"
+" * Remove aop-enabled object from the cache. After successful call of this "
+"API, the returning\n"
+" * POJO is no longer managed by the cache.\n"
+" *\n"
+" * @param fqn Instance that associates with this node.\n"
+" * @return Original POJO stored under this node.\n"
+" * @throws CacheException\n"
+" */\n"
+"Object removeObject(Fqn fqn) throws CacheException;"
 
 #. Tag: para
 #: Api.xml:28
@@ -170,6 +187,15 @@
 "  */\n"
 "Object getObject(Fqn fqn) throws CacheException;"
 msgstr ""
+"/**\n"
+"  * Retrieve the Pojo from the cache. Return null if object does not exist "
+"in the cache.\n"
+"  *\n"
+"  * @param fqn Instance that associates with this node.\n"
+"  * @return Current POJO value. Null if does not exist.\n"
+"  * @throws CacheException\n"
+"  */\n"
+"Object getObject(Fqn fqn) throws CacheException;"
 
 #. Tag: para
 #: Api.xml:33
@@ -205,6 +231,22 @@
 " */\n"
 "public Map findObjects(Fqn fqn) throws CacheException;"
 msgstr ""
+"/**\n"
+" * Query all managed pojo objects under the fqn recursively. Note that this "
+"will not return \n"
+" *the sub-object POJOs, e.g., if Person has a sub-object of Address, it "
+"won't return Address \n"
+" *pojo. Note also that this operation is not thread-safe now. In addition, "
+"it assumes \n"
+" *that once a pojo is found with a fqn, no more pojo is stored under the "
+"children of the fqn. \n"
+" *That is, we don't mixed the fqn with different POJOs.\n"
+" * @param fqn The starting place to find all POJOs.\n"
+" * @return Map of all POJOs found with (fqn, pojo) pair. Return size of 0, "
+"if not found.\n"
+" * @throws CacheException\n"
+" */\n"
+"public Map findObjects(Fqn fqn) throws CacheException;"
 
 #. Tag: para
 #: Api.xml:37




More information about the jbosscache-commits mailing list