Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -11,7 +11,6 @@
11 11 import org.litesoft.prioritizer.client.support.*;
12 12 import org.litesoft.prioritizer.server.*;
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 {
  @@ -54,13 +53,13 @@
54 53 public String getHexPassword()
55 54 {
56 55 String zEncryptedPassword = LLgetPassword();
57 - return (zEncryptedPassword == null) ? null : Utils.toHex( zEncryptedPassword.getBytes() );
56 + return (zEncryptedPassword == null) ? null : Hex.toHex( zEncryptedPassword.getBytes() );
58 57 }
59 58
60 59 @Override
61 60 protected void LLsetHexPassword( String pHexPassword )
62 61 {
63 - LLsetPassword( (pHexPassword == null) ? null : new String( Utils.fromHex( pHexPassword ) ) );
62 + LLsetPassword( (pHexPassword == null) ? null : new String( Hex.fromHex( pHexPassword ) ) );
64 63 }
65 64
66 65 @Override