diff --git a/common/src/main/java/com/genexus/properties/GXObjectProperties.java b/common/src/main/java/com/genexus/properties/GXObjectProperties.java index db9391d74..7283c71f1 100644 --- a/common/src/main/java/com/genexus/properties/GXObjectProperties.java +++ b/common/src/main/java/com/genexus/properties/GXObjectProperties.java @@ -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; @@ -44,4 +45,13 @@ public void setErrorMessage(String value) { errorMessage = value; } + + public String getProtocol() + { + return protocol; + } + public void setProtocol(String value) + { + protocol = value; + } } \ No newline at end of file