xpipe/beacon/src/main/java/module-info.java

39 lines
1.1 KiB
Java
Raw Normal View History

2022-01-02 08:11:13 +13:00
import io.xpipe.beacon.exchange.*;
2021-12-02 07:17:54 +13:00
module io.xpipe.beacon {
exports io.xpipe.beacon;
2021-12-11 04:24:11 +13:00
exports io.xpipe.beacon.exchange;
2021-12-02 07:17:54 +13:00
exports io.xpipe.beacon.message;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;
2022-01-12 07:28:14 +13:00
requires transitive io.xpipe.core;
2021-12-02 07:17:54 +13:00
opens io.xpipe.beacon;
2021-12-11 04:24:11 +13:00
opens io.xpipe.beacon.exchange;
opens io.xpipe.beacon.message;
exports io.xpipe.beacon.exchange.data;
opens io.xpipe.beacon.exchange.data;
2021-12-02 07:17:54 +13:00
2022-01-02 08:11:13 +13:00
requires static lombok;
2021-12-02 07:17:54 +13:00
2021-12-02 21:42:33 +13:00
uses MessageExchange;
2022-01-02 08:11:13 +13:00
provides io.xpipe.beacon.exchange.MessageExchange with
ListCollectionsExchange,
ListEntriesExchange,
ModeExchange,
2022-01-02 08:11:13 +13:00
StatusExchange,
StopExchange,
2022-01-03 11:13:10 +13:00
StoreResourceExchange,
2022-01-18 21:55:43 +13:00
WritePreparationExchange,
WriteExecuteExchange,
SelectExchange,
ReadPreparationExchange,
ReadExecuteExchange,
DialogExchange,
QueryDataSourceExchange,
2022-01-19 23:01:04 +13:00
PreStoreExchange,
EditPreparationExchange,
EditExecuteExchange,
2022-01-02 08:11:13 +13:00
VersionExchange;
2021-12-02 07:17:54 +13:00
}