[jboss-cvs] jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/model ...

Christian Bauer christian at hibernate.org
Sat Apr 21 15:58:02 EDT 2007


  User: cbauer  
  Date: 07/04/21 15:58:02

  Modified:    examples/wiki/src/main/org/jboss/seam/wiki/core/model 
                        Node.java
  Log:
  Ability to change owner/creator of wiki node
  
  Revision  Changes    Path
  1.11      +1 -1      jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/model/Node.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Node.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/model/Node.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- Node.java	19 Apr 2007 18:36:11 -0000	1.10
  +++ Node.java	21 Apr 2007 19:58:02 -0000	1.11
  @@ -84,7 +84,7 @@
       private Date createdOn = new Date();
   
       @ManyToOne(fetch = FetchType.LAZY)
  -    @JoinColumn(name = "CREATED_BY_USER_ID", nullable = false, updatable = false)
  +    @JoinColumn(name = "CREATED_BY_USER_ID", nullable = false)
       @org.hibernate.annotations.ForeignKey(name = "FK_NODE_CREATED_BY_USER_ID")
       protected User createdBy;
   
  
  
  



More information about the jboss-cvs-commits mailing list