We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69b256 commit bd3da10Copy full SHA for bd3da10
common/src/main/java/com/genexus/properties/GXObjectProperties.java
@@ -8,7 +8,8 @@ public class GXObjectProperties
8
private String errorMessage = "";
9
private int errorCode = 0;
10
private int statusCode = 0;
11
-
+ private String protocol = "REST";
12
+
13
public Location getLocation()
14
{
15
return location;
@@ -44,4 +45,13 @@ public void setErrorMessage(String value)
44
45
46
errorMessage = value;
47
}
48
49
+ public String getProtocol()
50
+ {
51
+ return protocol;
52
+ }
53
+ public void setProtocol(String value)
54
55
+ protocol = value;
56
57
0 commit comments