1 Reply Latest reply on May 8, 2006 12:00 PM by kukeltje

    The identity module

      Hi,
      i am testing the identity module .
      this is my code:

      public class TestIdentity{
      public static vois main(String arg[]){
      
      IdentitySession session= null;
      
       session.beginTransaction();
      
       User user= new User("TOTO");
       user.setEmail("TOTO@TOT0.com");
       user.setPassword("tata");
       session.saveUser(user);
      
       session.commitTransaction();
      
      }
      }
      


      any idea !!
      thanks.