|
From: Juergen H. <jho...@us...> - 2006-08-18 21:20:39
|
Update of /cvsroot/springframework/spring/src/org/springframework/jms/support In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6124/src/org/springframework/jms/support Modified Files: JmsAccessor.java Log Message: refined javadoc Index: JmsAccessor.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/jms/support/JmsAccessor.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** JmsAccessor.java 1 Aug 2006 20:34:07 -0000 1.7 --- JmsAccessor.java 18 Aug 2006 21:20:33 -0000 1.8 *************** *** 59,64 **** /** ! * Set the connection factory used for obtaining JMS connections. ! * @param connectionFactory connection factory used for obtaining JMS connections */ public void setConnectionFactory(ConnectionFactory connectionFactory) { --- 59,64 ---- /** ! * Set the connection factory used for obtaining JMS Connections. ! * @param connectionFactory connection factory used for obtaining JMS Connections */ public void setConnectionFactory(ConnectionFactory connectionFactory) { *************** *** 67,71 **** /** ! * Return the connection factory used for obtaining JMS connections. */ public ConnectionFactory getConnectionFactory() { --- 67,71 ---- /** ! * Return the connection factory used for obtaining JMS Connections. */ public ConnectionFactory getConnectionFactory() { *************** *** 74,83 **** /** ! * Set the transaction mode that is used when creating a JMS session to send a message. * Default is "false". * <p>Note that that within a JTA transaction, the parameters to ! * create(Queue/Topic)Session(boolean transacted, int acknowledgeMode) method are not ! * taken into account. Depending on the J2EE transaction context, the container ! * makes its own decisions on these values. See section 17.3.5 of the EJB Spec. * @param sessionTransacted the transaction mode * @see javax.jms.Connection#createSession(boolean, int) --- 74,86 ---- /** ! * Set the transaction mode that is used when creating a JMS Session. * Default is "false". * <p>Note that that within a JTA transaction, the parameters to ! * <code>create(Queue/Topic)Session(boolean transacted, int acknowledgeMode)</code> ! * method are not taken into account. Depending on the J2EE transaction context, ! * the container makes its own decisions on these values. See section 17.3.5 ! * of the EJB specification. Analogously, these parameters are not taken into ! * account within a locally managed transaction either, since the accessor ! * operates on an existing JMS Session in this case. * @param sessionTransacted the transaction mode * @see javax.jms.Connection#createSession(boolean, int) *************** *** 88,94 **** /** ! * Return whether the JMS {@link Session sessions} used for sending ! * a message are transacted. ! * @return <code>true</code> if the JMS {@link Session sessions} used * for sending a message are transacted * @see #setSessionTransacted(boolean) --- 91,96 ---- /** ! * Return whether the JMS Sessions are transacted. ! * @return <code>true</code> if the JMS Sessions used * for sending a message are transacted * @see #setSessionTransacted(boolean) |