File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
java/src/main/java/com/genexus/webpanels Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,25 @@ public abstract class GXWebObjectStub extends HttpServlet
2828 protected abstract String IntegratedSecurityPermissionPrefix ();
2929 protected abstract String EncryptURLParameters ();
3030
31+ protected ModelContext context ;
32+ protected int remoteHandle = -1 ;
33+
3134 protected static final int SECURITY_GXOBJECT = 3 ;
3235 protected static final int SECURITY_HIGH = 2 ;
3336 protected static final int SECURITY_LOW = 1 ;
3437
3538 private static final int HTTP_RESPONSE_BUFFER_SIZE = 131072 ;
3639
40+ public GXWebObjectStub ()
41+ {
42+ }
43+
44+ public GXWebObjectStub (int remoteHandle , ModelContext context )
45+ {
46+ this .remoteHandle = remoteHandle ;
47+ this .context = context ;
48+ }
49+
3750 private void dumpRequestInfo (HttpContext httpContext )
3851 {
3952 IHttpServletRequest request = httpContext .getRequest ();
You can’t perform that action at this time.
0 commit comments