Skip to content

Commit

Permalink
- Add protocol property to gxobject properties/GXObjectProperties.java (
Browse files Browse the repository at this point in the history
#656)

- Added protocol property for GeneXus Object for remote API Object CALL
  • Loading branch information
AlejandroP authored May 24, 2023
1 parent f69b256 commit bd3da10
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ public class GXObjectProperties
private String errorMessage = "";
private int errorCode = 0;
private int statusCode = 0;

private String protocol = "REST";

public Location getLocation()
{
return location;
Expand Down Expand Up @@ -44,4 +45,13 @@ public void setErrorMessage(String value)
{
errorMessage = value;
}

public String getProtocol()
{
return protocol;
}
public void setProtocol(String value)
{
protocol = value;
}
}

0 comments on commit bd3da10

Please sign in to comment.