2014-11-10 13:22:22 -05:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// ========================================================================
|
2023-02-14 23:22:32 -05:00
|
|
|
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
|
2014-11-10 13:22:22 -05:00
|
|
|
//
|
2020-12-10 17:04:50 -05:00
|
|
|
// This program and the accompanying materials are made available under the
|
|
|
|
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
|
|
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
|
|
|
|
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
|
2014-11-10 13:22:22 -05:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
|
|
|
|
// ========================================================================
|
2014-11-10 13:22:22 -05:00
|
|
|
//
|
|
|
|
|
2018-11-22 06:37:35 -05:00
|
|
|
module org.eclipse.jetty.websocket.jetty.api
|
2014-11-10 13:22:22 -05:00
|
|
|
{
|
2018-11-22 06:37:35 -05:00
|
|
|
exports org.eclipse.jetty.websocket.api;
|
|
|
|
exports org.eclipse.jetty.websocket.api.annotations;
|
2020-09-04 02:40:16 -04:00
|
|
|
exports org.eclipse.jetty.websocket.api.exceptions;
|
2018-11-22 06:37:35 -05:00
|
|
|
exports org.eclipse.jetty.websocket.api.util;
|
2020-02-21 01:36:02 -05:00
|
|
|
|
2021-09-30 02:57:28 -04:00
|
|
|
uses org.eclipse.jetty.websocket.api.ExtensionConfig.Parser;
|
2014-11-10 13:22:22 -05:00
|
|
|
}
|