Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void execute_int( short aP0 )
privateExecute();
}

private void privateExecute( )
protected void privateExecute( )
{
GXt_int1 = AV6i ;
GXv_int2[0] = GXt_int1 ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private void execute_int( String aP0 ,
privateExecute();
}

private void privateExecute( )
protected void privateExecute( )
{
AV10WebSession.setValue(AV8SessionName, AV9SessionValue);
cleanup();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private void execute_int( short[] aP0 )
privateExecute();
}

private void privateExecute( )
protected void privateExecute( )
{
if ( ! httpContext.isAjaxRequest( ) )
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void execute_int( short aP0 ,
privateExecute();
}

private void privateExecute( )
protected void privateExecute( )
{
GXt_int1 = AV6i ;
GXv_int2[0] = GXt_int1 ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private void execute_int(String s, com.genexus.genexusserverlessapi.SdtEventMess
privateExecute();
}

private void privateExecute() {
protected void privateExecute() {
System.out.println("START Schedule Event received");
throw new RuntimeException("Handler error");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private void execute_int() {
privateExecute();
}

private void privateExecute() {
protected void privateExecute() {
System.out.println("START EventBridge Event received with no parms");
System.out.println("END EventBridge Event");
cleanup();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private void execute_int(String aP0, com.genexus.genexusserverlessapi.SdtEventMe
privateExecute();
}

private void privateExecute() {
protected void privateExecute() {
System.out.println("START EventBridge Event received");
System.out.println("END EventBridge Event received");
cleanup();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private void execute_int(com.genexus.genexusserverlessapi.SdtEventMessages aP0,
privateExecute();
}

private void privateExecute() {
protected void privateExecute() {
System.out.println("START EventBridge Event received");
System.out.println("END EventBridge Event received");
cleanup();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private void execute_int(String aP0, com.genexus.genexusserverlessapi.SdtEventMe
privateExecute();
}

private void privateExecute() {
protected void privateExecute() {
System.out.println("START Queue Event received");
System.out.println(AV13RAWMessage);
System.out.println("END Queue Event received");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private void execute_int(com.genexus.genexusserverlessapi.SdtEventMessages aP0,
privateExecute();
}

private void privateExecute() {
protected void privateExecute() {
System.out.println("START Queue Event received");
System.out.println(AV8EventMessages.toJSonString(false, true));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private void execute_int( short aP0 ,
privateExecute();
}

private void privateExecute( )
protected void privateExecute( )
{
AV11numAux = (short)(AV8varchar1+AV9varchar2) ;
AV10varchar3 = GXutil.str( AV11numAux, 4, 0) ;
Expand Down
Loading