Subversion Repository Public Repository

litesoft

Diff Revisions 810 vs 811 for /trunk/Java/DATT/src/org/litesoft/datt/server/pos/User.java

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