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

https://github.com/devstarter/pushbullet.java

Java (Spring) library for Pushbullet API
https://github.com/devstarter/pushbullet.java

Last synced: about 1 year ago
JSON representation

Java (Spring) library for Pushbullet API

Awesome Lists containing this project

README

          

Pushbullet on Spring
===================

Java (Spring) library for Pushbullet API

```xml






```

```java
import static com.pushbullet.Builder.pushbullet;
import static com.pushbullet.Builder.registerClient;

@Autowired
private PushbulletClient pushbulletClient;

registerClient(pushbulletClient);
pushbullet().pushes().channel("pushbullet-java").note("to chanel", "test");
// or
pushbullet(pushbulletClient).pushes().broadcast().note("broadcast", "test");
```