The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings together over 400 leading Genome Institutes and Centers with IT industry leaders to create global standards and tools for the secure, privacy respecting and interoperable sharing of Genomic data.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.amila.sample.websocket.server; | |
| import org.eclipse.jetty.http.HttpVersion; | |
| import org.eclipse.jetty.server.*; | |
| import org.eclipse.jetty.server.handler.ContextHandler; | |
| import org.eclipse.jetty.server.handler.HandlerCollection; | |
| import org.eclipse.jetty.util.resource.FileResource; | |
| import org.eclipse.jetty.util.resource.Resource; | |
| import org.eclipse.jetty.util.ssl.SslContextFactory; | |
| import org.eclipse.jetty.websocket.server.WebSocketHandler; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependency> | |
| <groupId>org.eclipse.jetty</groupId> | |
| <artifactId>jetty-server</artifactId> | |
| <version>9.0.3.v20130506</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.eclipse.jetty.websocket</groupId> | |
| <artifactId>websocket-server</artifactId> | |
| <version>9.0.3.v20130506</version> | |
| </dependency> |