Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
onurciner committed Dec 26, 2016
1 parent c73e12c commit f5b4d45
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ else if (requestPropertyType.equals(RequestPropertyType.APPLICATION_JAVASCRIPT))
return this;
}

public WebServiceGetData setHeader(String key, String value) {
this.requestPropertyKey.add(key);
this.requestPropertyValue.add(value);
return this;
}

public WebServiceGetData setRequestProperty(String key, String value) {
this.requestPropertyKey.add(key);
this.requestPropertyValue.add(value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ else if (requestPropertyType.equals(RequestPropertyType.APPLICATION_JAVASCRIPT))
return this;
}

public WebServiceSendData setHeader(String key, String value) {
this.requestPropertyKey.add(key);
this.requestPropertyValue.add(value);
return this;
}

public WebServiceSendData setRequestProperty(String key, String value) {
this.requestPropertyKey.add(key);
this.requestPropertyValue.add(value);
Expand Down

0 comments on commit f5b4d45

Please sign in to comment.