henning 2003/06/18 04:48:33
Modified: xdocs/services torque-security-service.xml
Log:
The CustomUser Object must provide its explicit c'tors, especially the
CustomUser(Persistent p) c'tor. Add it to the example.
Revision Changes Path
1.2 +10 -0 jakarta-turbine-2/xdocs/services/torque-security-service.xml
Index: torque-security-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-2/xdocs/services/torque-security-service.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- torque-security-service.xml 18 Feb 2003 16:14:31 -0000 1.1
+++ torque-security-service.xml 18 Jun 2003 11:48:33 -0000 1.2
@@ -300,6 +300,16 @@
<source><![CDATA[
public class CustomUser extends TorqueUser
{
+ public CustomUser()
+ {
+ super();
+ }
+
+ public CustomUser(Persistent obj)
+ {
+ super(obj);
+ }
+
public String getPhone()
{
return ((CustomObject)getPersistentObj()).getPhone();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]