I just used org.apache.openjpa.persistence.meta.AnnotationProcessor6 to create a MetaModel for my JPA2 entities.
@javax.annotation.Generated (value="org.apache.openjpa.persistence.meta.AnnotationProcessor6", date="Tue Nov 22 09:49:03 CET 2011") public class Entity_ { public static volatile SingularAttribute<Entity,Entity> id; public static volatile SingularAttribute<Entity,String> value; public static volatile SingularAttribute<Entity,String> order; }
Can someone explain why in this case the attributes are marked as volatile?
Thanks.
source share