Skip to content

Commit bd3da10

Browse files
authored
- Add protocol property to gxobject properties/GXObjectProperties.java (#656)
- Added protocol property for GeneXus Object for remote API Object CALL
1 parent f69b256 commit bd3da10

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

common/src/main/java/com/genexus/properties/GXObjectProperties.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ public class GXObjectProperties
88
private String errorMessage = "";
99
private int errorCode = 0;
1010
private int statusCode = 0;
11-
11+
private String protocol = "REST";
12+
1213
public Location getLocation()
1314
{
1415
return location;
@@ -44,4 +45,13 @@ public void setErrorMessage(String value)
4445
{
4546
errorMessage = value;
4647
}
48+
49+
public String getProtocol()
50+
{
51+
return protocol;
52+
}
53+
public void setProtocol(String value)
54+
{
55+
protocol = value;
56+
}
4757
}

0 commit comments

Comments
 (0)