Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.relayr.model; //w w w .j a va2s.co m public class WebSocketConfig { public final String authKey; public final String cipherKey; public final String channel; public final String subscribeKey; public WebSocketConfig(String authKey, String cipherKey, String channel, String subscribeKey) { this.authKey = authKey; this.cipherKey = cipherKey; this.channel = channel; this.subscribeKey = subscribeKey; } }