File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
java/src/main/java/com/genexus/webpanels Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 2121public abstract class GXWebProcedure extends GXWebObjectBase
2222{
2323 private static final ILogger logger = LogManager .getLogger (GXWebProcedure .class );
24+
25+ public static final int IN_NEW_UTL = -2 ;
2426
2527 protected abstract void initialize ();
2628
@@ -47,11 +49,19 @@ public GXWebProcedure(WebServiceContext wsContext)
4749 logger .error ("Could not initialize Web Service" , e );
4850 }
4951 }
50-
52+
5153 public GXWebProcedure (int remoteHandle , ModelContext context )
5254 {
55+ this (false , remoteHandle ,context );
56+ }
57+
58+ public GXWebProcedure (boolean inNewUTL , int remoteHandle , ModelContext context ) {
5359 super (remoteHandle ,context );
54- }
60+
61+ if (inNewUTL ) {
62+ this .remoteHandle = IN_NEW_UTL ;
63+ }
64+ }
5565
5666 protected void initState (ModelContext context , UserInformation ui )
5767 {
You can’t perform that action at this time.
0 commit comments