Java implementation for the HipChat V2 API.
Java implementation for the HipChat V2 API. The implementation is base on - this doc.
Java 8 (need for lambda)
To add this implementation into your project:
<dependency>
<groupId>ch.viascom</groupId>
<artifactId>hipchat-api</artifactId>
<version>2.1-RC3</version>
</dependency>
compile 'ch.viascom:hipchat-api:2.1-RC3'
HipChat hipChat = new HipChat("<ACCESS_CODE>");
hipChat.roomsApi().sendRoomNotification("2640607", new Notification(null, null, MessageColor.RED, null, true, "Hello World", null));