Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 1.1 KB

Readme.md

File metadata and controls

26 lines (17 loc) · 1.1 KB

Blue Jeans Relay Mesh Example Server in Java

Mesh is an HTTP interface that allows Blue Jeans Relay to integrate with otherwise unsupported Endpoints.

The Relay Listener Service can send commands like join and hangup to this custom Mesh server, which will use custom integration logic to cause the unsupported Endpoint to carry out the command.

See the Relay API docs for more details and API specifications.

Requirements

Installation

git clone https://github.com/Aldaviva/relay-mesh-example-java.git
cd relay-mesh-example-java
mvn compile exec:java  

The web server will compile and run, listening on port 6374. Requests will be parsed and logged.

Start coding

Check out the resource methods in src/main/java/com/example/mesh/EndpointControlResource.java.

From here you can implement your own logic when different requests are handled.