org.jboss.netty.util.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netty Show documentation
Show all versions of netty Show documentation
The Netty project is an effort to provide an asynchronous event-driven
network application framework and tools for rapid development of
maintainable high performance and high scalability protocol servers and
clients. In other words, Netty is a NIO client server framework which
enables quick and easy development of network applications such as protocol
servers and clients. It greatly simplifies and streamlines network
programming such as TCP and UDP socket server.
// DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS
package org.jboss.netty.util;
/**
* Provides the version information of Netty.
* @apiviz.landmark
*/
@SuppressWarnings("all")
public final class Version {
/** The version identifier. */
public static final String ID = "3.8.0.Final-6e67dde";
/** Prints out the version identifier to stdout. */
public static void main(String[] args) { System.out.println(ID); }
private Version() { }
}