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.
- Blue Jeans Relay account
- Java JDK 7 or later
- Maven
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.
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.