Subversion Repository Public Repository

litesoft

Diff Revisions 810 vs 811 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/server/pos/User.java

Diff revisions: vs.
  @@ -10,7 +10,6 @@
10 10 import org.litesoft.exceptions.*;
11 11 import org.litesoft.orsup.selection.*;
12 12 import org.litesoft.orsup.transact.*;
13 - import org.litesoft.util.*;
14 13
15 14 public class User extends UserGO
16 15 {
  @@ -51,13 +50,13 @@
51 50 public String getHexPassword()
52 51 {
53 52 String zEncryptedPassword = LLgetPassword();
54 - return (zEncryptedPassword == null) ? null : Utils.toHex( zEncryptedPassword.getBytes() );
53 + return (zEncryptedPassword == null) ? null : Hex.toHex( zEncryptedPassword.getBytes() );
55 54 }
56 55
57 56 @Override
58 57 protected void LLsetHexPassword( String pHexPassword )
59 58 {
60 - LLsetPassword( (pHexPassword == null) ? null : new String( Utils.fromHex( pHexPassword ) ) );
59 + LLsetPassword( (pHexPassword == null) ? null : new String( Hex.fromHex( pHexPassword ) ) );
61 60 }
62 61
63 62 @Override