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 e76c48d commit 06cfb8fCopy full SHA for 06cfb8f
common/src/main/java/com/genexus/properties/GXObjectProperties.java
@@ -9,6 +9,7 @@ public class GXObjectProperties
9
private int errorCode = 0;
10
private int statusCode = 0;
11
private String protocol = "REST";
12
+ private String statusMessage = "";
13
14
public Location getLocation()
15
{
@@ -45,7 +46,14 @@ public void setErrorMessage(String value)
45
46
47
errorMessage = value;
48
}
-
49
+ public String getStatusMessage()
50
+ {
51
+ return statusMessage;
52
+ }
53
+ public void setStatusMessage(String value)
54
55
+ statusMessage = value;
56
57
public String getProtocol()
58
59
return protocol;
0 commit comments