[jboss-cvs] JBossAS SVN: r90803 - projects/docs/enterprise/4.3.3/Server_Configuration_Guide/pt-BR.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 3 02:20:17 EDT 2009


Author: ldelima at redhat.com
Date: 2009-07-03 02:20:17 -0400 (Fri, 03 Jul 2009)
New Revision: 90803

Modified:
   projects/docs/enterprise/4.3.3/Server_Configuration_Guide/pt-BR/J2EE_EJBs_On_JBOSS.po
Log:
translation ongoing

Modified: projects/docs/enterprise/4.3.3/Server_Configuration_Guide/pt-BR/J2EE_EJBs_On_JBOSS.po
===================================================================
--- projects/docs/enterprise/4.3.3/Server_Configuration_Guide/pt-BR/J2EE_EJBs_On_JBOSS.po	2009-07-03 06:19:06 UTC (rev 90802)
+++ projects/docs/enterprise/4.3.3/Server_Configuration_Guide/pt-BR/J2EE_EJBs_On_JBOSS.po	2009-07-03 06:20:17 UTC (rev 90803)
@@ -8,7 +8,7 @@
 "Project-Id-Version: J2EE_EJBs_On_JBOSS\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n"
 "POT-Creation-Date: 2009-01-20 02:37+0000\n"
-"PO-Revision-Date: 2009-07-03 16:18+1000\n"
+"PO-Revision-Date: 2009-07-03 16:20+1000\n"
 "Last-Translator: \n"
 "Language-Team:  <en at li.org>\n"
 "MIME-Version: 1.0\n"
@@ -3707,7 +3707,7 @@
 #: J2EE_EJBs_On_JBOSS.xml:1073
 #, no-c-format
 msgid "org.jboss.ejb.EntityPersistenceManager"
-msgstr ""
+msgstr "org.jboss.ejb.EntityPersistenceManager"
 
 #. Tag: para
 #: J2EE_EJBs_On_JBOSS.xml:1074
@@ -3921,6 +3921,163 @@
 "        throws RemoteException, RemoveException;\n"
 "}"
 msgstr ""
+"public interface EntityPersistenceManager \n"
+"    extends ContainerPlugin\n"
+"{\n"
+"    /**\n"
+"     * Returns a new instance of the bean class or a subclass of the\n"
+"     * bean class.\n"
+"     *\n"
+"     * @return the new instance\n"
+"     */\n"
+"    Object createBeanClassInstance() throws Exception;\n"
+"                    \n"
+"    /**\n"
+"     * This method is called whenever an entity is to be created. The\n"
+"     * persistence manager is responsible for calling the ejbCreate method\n"
+"     * on the instance and to handle the results properly wrt the "
+"persistent\n"
+"     * store.\n"
+"     *\n"
+"     * @param m the create method in the home interface that was\n"
+"     * called\n"
+"     * @param args any create parameters\n"
+"     * @param instance the instance being used for this create call\n"
+"     */\n"
+"    void createEntity(Method m,\n"
+"                      Object[] args,\n"
+"                      EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called whenever an entity is to be created. The\n"
+"     * persistence manager is responsible for calling the ejbPostCreate "
+"method\n"
+"     * on the instance and to handle the results properly wrt the "
+"persistent\n"
+"     * store.\n"
+"     *\n"
+"     * @param m the create method in the home interface that was\n"
+"     * called\n"
+"     * @param args any create parameters\n"
+"     * @param instance the instance being used for this create call\n"
+"     */\n"
+"    void postCreateEntity(Method m,\n"
+"                          Object[] args,\n"
+"                          EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when single entities are to be found. The\n"
+"     * persistence manager must find out whether the wanted instance is\n"
+"     * available in the persistence store, and if so it shall use the\n"
+"     * ContainerInvoker plugin to create an EJBObject to the instance, "
+"which\n"
+"     * is to be returned as result.\n"
+"     *\n"
+"     * @param finderMethod the find method in the home interface that was\n"
+"     * called\n"
+"     * @param args any finder parameters\n"
+"     * @param instance the instance to use for the finder call\n"
+"     * @return an EJBObject representing the found entity\n"
+"     */\n"
+"    Object findEntity(Method finderMethod,\n"
+"                      Object[] args,\n"
+"                      EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when collections of entities are to be\n"
+"     * found. The persistence manager must find out whether the wanted\n"
+"     * instances are available in the persistence store, and if so it\n"
+"     * shall use the ContainerInvoker plugin to create EJBObjects to\n"
+"     * the instances, which are to be returned as result.\n"
+"     *\n"
+"     * @param finderMethod the find method in the home interface that was\n"
+"     * called\n"
+"     * @param args any finder parameters\n"
+"     * @param instance the instance to use for the finder call\n"
+"     * @return an EJBObject collection representing the found\n"
+"     * entities\n"
+"     */\n"
+"    Collection findEntities(Method finderMethod,\n"
+"                            Object[] args,\n"
+"                            EntityEnterpriseContext instance)\n"
+"                     throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when an entity shall be activated. The\n"
+"     * persistence manager must call the ejbActivate method on the\n"
+"     * instance.\n"
+"     *\n"
+"     * @param instance the instance to use for the activation\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void activateEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"                    \n"
+"    /**\n"
+"     * This method is called whenever an entity shall be load from the\n"
+"     * underlying storage. The persistence manager must load the state\n"
+"     * from the underlying storage and then call ejbLoad on the\n"
+"     * supplied instance.\n"
+"     *\n"
+"     * @param instance the instance to synchronize\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void loadEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is used to determine if an entity should be stored.\n"
+"     *\n"
+"     * @param instance the instance to check\n"
+"     * @return true, if the entity has been modified\n"
+"     * @throws Exception thrown if some system exception occurs\n"
+"     */\n"
+"    boolean isModified(EntityEnterpriseContext instance) throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called whenever an entity shall be stored to the\n"
+"     * underlying storage. The persistence manager must call ejbStore\n"
+"     * on the supplied instance and then store the state to the\n"
+"     * underlying storage.\n"
+"     *\n"
+"     * @param instance the instance to synchronize\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void storeEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when an entity shall be passivate. The\n"
+"     * persistence manager must call the ejbPassivate method on the\n"
+"     * instance.\n"
+"     *\n"
+"     * @param instance the instance to passivate\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void passivateEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when an entity shall be removed from the\n"
+"     * underlying storage. The persistence manager must call ejbRemove\n"
+"     * on the instance and then remove its state from the underlying\n"
+"     * storage.\n"
+"     *\n"
+"     * @param instance the instance to remove\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     * @throws RemoveException thrown if the instance could not be removed\n"
+"     */\n"
+"    void removeEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException, RemoveException;\n"
+"}"
 
 #. Tag: title
 #: J2EE_EJBs_On_JBOSS.xml:1115
@@ -4118,6 +4275,172 @@
 "        throws RemoteException, RemoveException;\n"
 "}"
 msgstr ""
+"public interface EntityPersistenceStore \n"
+"    extends ContainerPlugin\n"
+"{\n"
+"    /**\n"
+"     * Returns a new instance of the bean class or a subclass of the\n"
+"     * bean class.\n"
+"     *\n"
+"     * @return the new instance\n"
+"     *\n"
+"     * @throws Exception\n"
+"     */\n"
+"    Object createBeanClassInstance() \n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * Initializes the instance context.\n"
+"     *\n"
+"     * &lt;p&gt;This method is called before createEntity, and should\n"
+"     * reset the value of all cmpFields to 0 or null.\n"
+"     *\n"
+"     * @param ctx\n"
+"     *\n"
+"     * @throws RemoteException\n"
+"     */\n"
+"    void initEntity(EntityEnterpriseContext ctx);\n"
+"    \n"
+"    /**\n"
+"     * This method is called whenever an entity is to be created.  The\n"
+"     * persistence manager is responsible for handling the results\n"
+"     * properly wrt the persistent store.\n"
+"     *\n"
+"     * @param m the create method in the home interface that was\n"
+"     * called\n"
+"     * @param args any create parameters\n"
+"     * @param instance the instance being used for this create call\n"
+"     * @return The primary key computed by CMP PM or null for BMP\n"
+"     *\n"
+"     * @throws Exception\n"
+"     */\n"
+"    Object createEntity(Method m,\n"
+"                        Object[] args,\n"
+"                        EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when single entities are to be found. The\n"
+"     * persistence manager must find out whether the wanted instance\n"
+"     * is available in the persistence store, if so it returns the\n"
+"     * primary key of the object.\n"
+"     *\n"
+"     * @param finderMethod the find method in the home interface that was\n"
+"     * called\n"
+"     * @param args any finder parameters\n"
+"     * @param instance the instance to use for the finder call\n"
+"     * @return a primary key representing the found entity\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     * @throws FinderException thrown if some heuristic problem occurs\n"
+"     */\n"
+"    Object findEntity(Method finderMethod,\n"
+"                      Object[] args,\n"
+"                      EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when collections of entities are to be\n"
+"     * found. The persistence manager must find out whether the wanted\n"
+"     * instances are available in the persistence store, and if so it\n"
+"     * must return a collection of primaryKeys.\n"
+"     *\n"
+"     * @param finderMethod the find method in the home interface that was\n"
+"     * called\n"
+"     * @param args any finder parameters\n"
+"     * @param instance the instance to use for the finder call\n"
+"     * @return an primary key collection representing the found\n"
+"     * entities\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     * @throws FinderException thrown if some heuristic problem occurs\n"
+"     */\n"
+"    Collection findEntities(Method finderMethod,\n"
+"                            Object[] args,\n"
+"                            EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when an entity shall be activated.\n"
+"     *\n"
+"     * &lt;p&gt;With the PersistenceManager factorization most EJB\n"
+"     * calls should not exists However this calls permits us to\n"
+"     * introduce optimizations in the persistence store. Particularly\n"
+"     * the context has a \"PersistenceContext\" that a PersistenceStore\n"
+"     * can use (JAWS does for smart updates) and this is as good a\n"
+"     * callback as any other to set it up.\n"
+"     * @param instance the instance to use for the activation\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void activateEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is called whenever an entity shall be load from the\n"
+"     * underlying storage. The persistence manager must load the state\n"
+"     * from the underlying storage and then call ejbLoad on the\n"
+"     * supplied instance.\n"
+"     *\n"
+"     * @param instance the instance to synchronize\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void loadEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is used to determine if an entity should be stored.\n"
+"     *\n"
+"     * @param instance the instance to check\n"
+"     * @return true, if the entity has been modified\n"
+"     * @throws Exception thrown if some system exception occurs\n"
+"     */\n"
+"    boolean isModified(EntityEnterpriseContext instance)\n"
+"        throws Exception;\n"
+"    \n"
+"    /**\n"
+"     * This method is called whenever an entity shall be stored to the\n"
+"     * underlying storage. The persistence manager must call ejbStore\n"
+"     * on the supplied instance and then store the state to the\n"
+"     * underlying storage.\n"
+"     *\n"
+"     * @param instance the instance to synchronize\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void storeEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when an entity shall be passivate. The\n"
+"     * persistence manager must call the ejbPassivate method on the\n"
+"     * instance.\n"
+"     *\n"
+"     * &lt;p&gt;See the activate discussion for the reason for\n"
+"     * exposing EJB callback * calls to the store.\n"
+"     *\n"
+"     * @param instance the instance to passivate\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     */\n"
+"    void passivateEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    /**\n"
+"     * This method is called when an entity shall be removed from the\n"
+"     * underlying storage. The persistence manager must call ejbRemove\n"
+"     * on the instance and then remove its state from the underlying\n"
+"     * storage.\n"
+"     *\n"
+"     * @param instance the instance to remove\n"
+"     *\n"
+"     * @throws RemoteException thrown if some system exception occurs\n"
+"     * @throws RemoveException thrown if the instance could not be removed\n"
+"     */\n"
+"    void removeEntity(EntityEnterpriseContext instance)\n"
+"        throws RemoteException, RemoveException;\n"
+"}"
 
 #. Tag: para
 #: J2EE_EJBs_On_JBOSS.xml:1121
@@ -4206,6 +4529,24 @@
 "    public void removePassivated(Object key);\n"
 "}"
 msgstr ""
+"public interface StatefulSessionPersistenceManager \n"
+"    extends ContainerPlugin\n"
+"{\n"
+"    public void createSession(Method m, Object[] args,\n"
+"                              StatefulSessionEnterpriseContext ctx)\n"
+"        throws Exception;\n"
+"    \n"
+"    public void activateSession(StatefulSessionEnterpriseContext ctx)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    public void passivateSession(StatefulSessionEnterpriseContext ctx)\n"
+"        throws RemoteException;\n"
+"    \n"
+"    public void removeSession(StatefulSessionEnterpriseContext ctx)\n"
+"        throws RemoteException, RemoveException;\n"
+"    \n"
+"    public void removePassivated(Object key);\n"
+"}"
 
 #. Tag: para
 #: J2EE_EJBs_On_JBOSS.xml:1158
@@ -4439,6 +4780,34 @@
 "JDBCRelationInterceptor&lt;/interceptor&gt;\n"
 "&lt;/container-interceptors&gt;"
 msgstr ""
+"&lt;container-interceptors&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins."
+"ProxyFactoryFinderInterceptor&lt;/interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.LogInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.SecurityInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.TxInterceptorCMT&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.CallValidationInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor metricsEnabled=\"true\"&gt;org.jboss.ejb.plugins."
+"MetricsInterceptor&lt;/interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.EntityCreationInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.EntityLockInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.EntityInstanceInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.EntityReentranceInterceptor&lt;/"
+"interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.resource.connectionmanager."
+"CachedConnectionInterceptor&lt;/interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins."
+"EntitySynchronizationInterceptor&lt;/interceptor&gt;\n"
+"    &lt;interceptor&gt;org.jboss.ejb.plugins.cmp.jdbc."
+"JDBCRelationInterceptor&lt;/interceptor&gt;\n"
+"&lt;/container-interceptors&gt;"
 
 #. Tag: para
 #: J2EE_EJBs_On_JBOSS.xml:1242




More information about the jboss-cvs-commits mailing list