https://github.com/zebradevs/dataservices-java-sdk
https://github.com/zebradevs/dataservices-java-sdk
data-services java sdk
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/zebradevs/dataservices-java-sdk
- Owner: ZebraDevs
- License: mit
- Created: 2019-11-27T19:38:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-11T19:08:00.000Z (about 6 years ago)
- Last Synced: 2025-02-10T08:51:23.223Z (over 1 year ago)
- Topics: data-services, java, sdk
- Language: Java
- Size: 34.2 KB
- Stars: 1
- Watchers: 17
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Zebra Savanna Data Services Java SDK
====================================
This is the source code for the Savanna Java Software Development Kit (SDK).
The core of this SDK is a basic API connection call to the Zebra Savanna Data Services in the SavannaAPI class. Currently the API has public methods for the three public APIs that are part of the Barcode Intelligence product. These APIs are:
* Barcode Generate
* UPC Lookup
* FDA Recall
This SDK also has models for all the data sent and received by these APIs in order to make it easier to work with them.
API Key
-------
To get an API key to work with these APIs, use the [Getting Started Guide](https://developer.zebra.com/gsg) and select the Barcode Intelligence product.
Documentation
-------------
For more information on these APIs, go to [developer.zebra.com/apis](https://developer.zebra.com/apis) or visit the [Forums](https://developer.zebra.com/forum/search?keys=&field_zebra_curated_tags_tid%5B%5D=273)
Usage guide
-----------
Set Zebra Savanna API key
```java
SavannaAPI.setAPIKey(sharedPreferences.getString("apikey", ""));
```
Create Barcode
```java
byte[] barcodeBytes = CreateBarcode.create(symbology, barcodeText.Text);
```
UPC Lookup
```java
String upcLookupJson = UPCLookup.lookup(barcode);`
```
FDA Food Recall
```java
String foodUpcJson = FDARecall.foodUpc(barcode);
```
FDA Drug Recall
```java
String drugUpcJson = FDARecall.drugUpc(barcode);
```
FDA Device Recall Search
```java
String deviceSearchJson = FDARecall.deviceSearch(searchText.Text);
```
FDA Drug Recall Search
```java
String drugSearchJson = FDARecall.drugSearch(searchText.Text);
```