Skip to content

Commit 4dd72bf

Browse files
author
eoberortner
committed
updates
1 parent 3a31dbb commit 4dd72bf

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/gov/doe/jgi/boost/client/RESTInvoker.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
import javax.ws.rs.client.WebTarget;
88
import javax.ws.rs.core.MediaType;
99
import javax.ws.rs.core.Response;
10+
1011
import org.json.JSONObject;
11-
import gov.doe.jgi.boost.exception.BOOSTAPIsException;
12+
1213
import gov.doe.jgi.boost.exception.BOOSTClientException;
1314

1415
/**

src/main/java/gov/doe/jgi/boost/client/constants/BOOSTConstantsArrayList.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package gov.doe.jgi.boost.client.constants;
22

3-
import java.util.ArrayList;
43
import java.util.Arrays;
54
import java.util.List;
65

src/main/java/gov/doe/jgi/boost/client/constants/LoginCredentials.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
public class LoginCredentials {
88
// --alternative 1: provide your BOOST-JWT
9-
public static final String mJWT = "put your JWT here";
9+
public static final String mJWT = "";
1010

1111
// --alternative 2: provide your user name and password
1212
public static final String mUserName = "put your user name here";

src/test/java/gov/doe/jgi/boost/client/DemoClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static void main(String[] args)
4141
try {
4242
System.out.println(jsonPredefinedHosts.toString(4));
4343
}catch(NullPointerException e) {
44-
System.out.println(e.getMessage() + " Error in josnPeredeefinedHosts");
44+
System.out.println(e.getMessage() + " Error in jsonPredefinedHosts");
4545
}
4646

4747
// set the target namespace

0 commit comments

Comments
 (0)