├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src └── main ├── java └── org │ └── nextrtc │ └── examples │ └── videochat │ ├── MyEndpoint.java │ ├── MyWebSocketConfigurator.java │ └── SampleWebStaticApplication.java ├── resources ├── application.properties ├── keystore.jks └── log4j2.xml └── webapp ├── bundle.js └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/nextrtc/examples/videochat/MyEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/java/org/nextrtc/examples/videochat/MyEndpoint.java -------------------------------------------------------------------------------- /src/main/java/org/nextrtc/examples/videochat/MyWebSocketConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/java/org/nextrtc/examples/videochat/MyWebSocketConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/nextrtc/examples/videochat/SampleWebStaticApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/java/org/nextrtc/examples/videochat/SampleWebStaticApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/resources/keystore.jks -------------------------------------------------------------------------------- /src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /src/main/webapp/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/webapp/bundle.js -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslosarz/nextrtc-example-videochat/HEAD/src/main/webapp/index.html --------------------------------------------------------------------------------