Skip to content

Commit 06cfb8f

Browse files
committed
- Fox por error de capitalizacion en propiedad java.
Issue: 103338
1 parent e76c48d commit 06cfb8f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public class GXObjectProperties
99
private int errorCode = 0;
1010
private int statusCode = 0;
1111
private String protocol = "REST";
12+
private String statusMessage = "";
1213

1314
public Location getLocation()
1415
{
@@ -45,7 +46,14 @@ public void setErrorMessage(String value)
4546
{
4647
errorMessage = value;
4748
}
48-
49+
public String getStatusMessage()
50+
{
51+
return statusMessage;
52+
}
53+
public void setStatusMessage(String value)
54+
{
55+
statusMessage = value;
56+
}
4957
public String getProtocol()
5058
{
5159
return protocol;

0 commit comments

Comments
 (0)