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 a4673f9 commit 91914cfCopy full SHA for 91914cf
scribejava-apis/src/main/java/com/github/scribejava/apis/FrappeApi.java
@@ -7,7 +7,7 @@
7
8
public class FrappeApi extends DefaultApi20 {
9
10
- String serverURL = "https://erpnext.org";
+ private String serverURL = "https://erpnext.org";
11
12
protected FrappeApi() {
13
}
@@ -20,6 +20,14 @@ public static FrappeApi instance() {
20
return InstanceHolder.INSTANCE;
21
22
23
+ public String getServerURL() {
24
+ return this.serverURL;
25
+ }
26
+
27
+ public void setServerURL(String serverURL) {
28
+ this.serverURL = serverURL;
29
30
31
@Override
32
public Verb getAccessTokenVerb() {
33
return Verb.POST;
0 commit comments