Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sap/java-integration-for-sap-mobile-services

Java library that integrates to SAP Mobile Services Backend APIs. As a start this will only provide the Notification Backend API to send notifications to mobile devices. Further APIs may be included in the future.
https://github.com/sap/java-integration-for-sap-mobile-services

client integration java mobile-services sap

Last synced: 3 months ago
JSON representation

Java library that integrates to SAP Mobile Services Backend APIs. As a start this will only provide the Notification Backend API to send notifications to mobile devices. Further APIs may be included in the future.

Awesome Lists containing this project

README

        

# Java integration for SAP Mobile Services

[![REUSE status](https://api.reuse.software/badge/github.com/SAP/java-integration-for-sap-mobile-services)](https://api.reuse.software/info/github.com/SAP/java-integration-for-sap-mobile-services)
[![Maven Central](https://img.shields.io/maven-central/v/com.sap.cloud.platform.mobile.services/java-integration?color=green)](https://central.sonatype.com/artifact/com.sap.cloud.platform.mobile.services/java-integration/0.1.0/versions)

## About this project

**Java integration for SAP Mobile Services** is a client library to integrate your application with the backend-facing APIs of SAP Mobile Services. As this project only started, it at the moment only provides the integration to the Notification Backend services, which allows you to send push notifications to your mobile devices. Other integrated APIs may be added to this library in the future.

## Requirements and Setup

| Release | Minimum JDK Version | Spring Boot Version |
|:-------:|:-------------------:|:-------------------:|
| 0.7 | JDK 8 | 2.7 |
| 1.x | JDK 17 | 3.1 |

See [Spring Boot Support](https://spring.io/projects/spring-boot#support) for support time frames.

Basic initialization of a PushClient:

```java
MobileServicesSettings mobileServicesSettings = MobileServicesSettings.fromResource("mobileservices.json");
PushClient pushClient = new PushClientBuilder().build(mobileServicesSettings);
```

**Documentation: [latest release](https://sap.github.io/java-integration-for-sap-mobile-services/current) - [dev](https://sap.github.io/java-integration-for-sap-mobile-services/main)**
**JavaDoc: [latest release](https://sap.github.io/java-integration-for-sap-mobile-services/current/javadoc) - [dev](https://sap.github.io/java-integration-for-sap-mobile-services/main/javadoc)**

## Support, Feedback, Contributing

This project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/SAP/java-integration-for-sap-mobile-services/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).

## Code of Conduct

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its [Code of Conduct](CODE_OF_CONDUCT.md) at all times.

## Licensing

Copyright 2022 SAP SE or an SAP affiliate company and Java integration for SAP Mobile Services contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/java-integration-for-sap-mobile-services).