org.glassfish.grizzly:grizzly-npn-api

Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.

License

License

Categories

Categories

GlassFish Container Application Servers Grizzly Net Networking
GroupId

GroupId

org.glassfish.grizzly
ArtifactId

ArtifactId

grizzly-npn-api
Last Version

Last Version

2.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.
Project URL

Project URL

https://projects.eclipse.org/projects/ee4j.grizzly/grizzly-npn-api
Project Organization

Project Organization

Oracle Corporation

Download grizzly-npn-api

How to add to project

<!-- https://jarcasting.com/artifacts/org.glassfish.grizzly/grizzly-npn-api/ -->
<dependency>
    <groupId>org.glassfish.grizzly</groupId>
    <artifactId>grizzly-npn-api</artifactId>
    <version>2.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.glassfish.grizzly/grizzly-npn-api/
implementation 'org.glassfish.grizzly:grizzly-npn-api:2.0.0'
// https://jarcasting.com/artifacts/org.glassfish.grizzly/grizzly-npn-api/
implementation ("org.glassfish.grizzly:grizzly-npn-api:2.0.0")
'org.glassfish.grizzly:grizzly-npn-api:jar:2.0.0'
<dependency org="org.glassfish.grizzly" name="grizzly-npn-api" rev="2.0.0">
  <artifact name="grizzly-npn-api" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.glassfish.grizzly', module='grizzly-npn-api', version='2.0.0')
)
libraryDependencies += "org.glassfish.grizzly" % "grizzly-npn-api" % "2.0.0"
[org.glassfish.grizzly/grizzly-npn-api "2.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

This module interfaces with the TLS implementation of Oracle JDK8 to provide an implementation of ALPN. The module was written for use in Grizzly, but is intended as a general purpose solution to allow JDK8 based software to use ALPN.

How Grizzly Uses This Module

Grizzly has the concept of an AddOn. This facility allows Grizzly to be extended using an implementation of the Chain of Responsibility design pattern. In general, an AddOn implementation will insert one or more Filter implementations into the FilterChain which is used to process HTTP requests and cause HTTP responses to be sent.

Grizzly itself uses this AddOn concept to provide HTTP/2 support, in the form of Http2AddOn In addition to registering filters for HTTP/2 processing, this AddOn implementation registers a callback withthe ALPN extension to insert itself into the SSL Handshake process

Programmatic Configuration

AddOn has a setup method that is called to allow the implementation to do whatever one-time setup is required to make things work. The setup override in the Http2AddOn takes the following actions if the current connection is secure (that is, it is supposed to be using ALPN).

  • Use the addHandshakeListener method of the existing SSLBaseFilter to cause an ALPN specific SSL handshake listener to be added to the existing list of listeners that are invoked when an ssl handshake happens.

    Grizzly's handshake listener has several methods, but the only one used is onStart. This obtains the JDK SSLEngine and takes different action depending on the return from its getUseClientMode() method. The grizzly-npn module provides AlpnClientNegotiator and AlpnServerNegotiator interfaces for these two cases. Please see the interfaces for the specification of the required actions.

    If getUseClientMode is true,

    • use the grizzly addCloseListener facility to install a listener that calls NegotiationSupport .removeClientNegotiator(). This will ensure the client negotiator is removed when the connection closes.

    • Call NegotiationSupport.addNegotiator passing the SSLEngine and the client negotiator impl.

    If getUseClientmode is false,

    • do the same as above, but use the server negotiator impl.

    By the time onStart is invoked, the handshake listener will have been initialized with implementations of AlpnClientNegotiator and AlpnServerNegotiator by the Http2AddOn.

Deployment Configuration

The above programmatic configuration steps will make it so the simple act of including the module built from the bootstrap sub-module of this repository in the bootclasspath of the JVM will enable ALPN support in that JVM.

org.glassfish.grizzly

Eclipse EE4J

The Eclipse EE4J Project

Versions

Version
2.0.0
1.9
1.8.1
1.8
1.7
1.6
1.5
1_4
1.3
1.2
1.1
1.0
1.0-beta1