of course its correct. 
The spec says:
anonymous wrote : 9.1.14 Transient Annotation
  | The Transient annotation is used to annotate a property or field of the 
entity class. It specifies that
  | the property or field is not persistent.
  | @Target({METHOD, FIELD}) @Retention(RUNTIME)
  | public @interface Transient {}
  | Example:
  | @Entity
  | public class Employee {
  | @Id int id;
  | @Transient User currentUser;
  | ...
  | }
which means, that if u fetch a entity bean from the database, its transient 
members can not be initialized since they are not stored.

regards, milan wölke

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927480#3927480

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927480


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to