当前位置: 首页>>代码示例>>Java>>正文


Java PluginEntryPoint类代码示例

本文整理汇总了Java中com.hivemq.spi.PluginEntryPoint的典型用法代码示例。如果您正苦于以下问题:Java PluginEntryPoint类的具体用法?Java PluginEntryPoint怎么用?Java PluginEntryPoint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


PluginEntryPoint类属于com.hivemq.spi包,在下文中一共展示了PluginEntryPoint类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return ConsulDiscoveryPluginEntryPoint.class;
}
 
开发者ID:pellepelster,项目名称:hivemq-consul-cluster-discovery,代码行数:5,代码来源:ConsulDiscoveryPluginModule.java

示例2: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return ClientStatusMainClass.class;
}
 
开发者ID:artcom,项目名称:hivemq-client-status-plugin,代码行数:5,代码来源:ClientStatusPluginModule.java

示例3: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return BlackAndWhitelistExampleMainClass.class;
}
 
开发者ID:hivemq,项目名称:hivemq-authorization-blacklist-whitelist-example,代码行数:5,代码来源:BlackAndWhitelistExamplePluginModule.java

示例4: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return X509ClientCertEntryPoint.class;
}
 
开发者ID:hivemq,项目名称:x509-client-cert-hivemq-example-plugin,代码行数:5,代码来源:X509ClientCertPluginModule.java

示例5: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return DatabaseExamplePlugin.class;
}
 
开发者ID:hivemq,项目名称:hivemq-database-example-plugin,代码行数:5,代码来源:DatabaseExamplePluginModule.java

示例6: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return MqttMessageLog.class;
}
 
开发者ID:hivemq,项目名称:mqtt-message-log,代码行数:5,代码来源:MqttMessageLogPluginModule.java

示例7: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * This method needs to return the main class of the plugin.
 *
 * @return callback priority
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return S3DiscoveryPluginEntryPoint.class;
}
 
开发者ID:hivemq,项目名称:s3-cluster-discovery-plugin,代码行数:10,代码来源:S3DiscoveryPluginModule.java

示例8: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * This method needs to return the main class of the plugin.
 *
 * @return callback priority
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return InfluxDbMonitoringEntryPoint.class;
}
 
开发者ID:hivemq,项目名称:influxdb-monitoring-plugin,代码行数:10,代码来源:InfluxDbMonitoringModule.java

示例9: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * This method needs to return the main class of the plugin.
 *
 * @return callback priority
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return KafkaPluginMain.class;
}
 
开发者ID:sabarishs,项目名称:hivemq-kafka-plugin,代码行数:10,代码来源:KafkaSinkPluginModule.java

示例10: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * This method needs to return the main class of the plugin.
 *
 * @return callback priority
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return ExamplePluginEntryPoint.class;
}
 
开发者ID:hivemq,项目名称:hivemq-spring-example-plugin,代码行数:10,代码来源:ExamplePluginModule.java

示例11: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * This method needs to return the main class of the plugin.
 *
 * @return callback priority
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return AuthorizationExampleMainClass.class;
}
 
开发者ID:hivemq,项目名称:hivemq-authorization-example,代码行数:10,代码来源:AuthorizationExamplePluginModule.java

示例12: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * This method needs to return the main class of the plugin.
 *
 * @return callback priority
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return HelloWorldMainClass.class;
}
 
开发者ID:hivemq,项目名称:hivemq-hello-world-plugin,代码行数:10,代码来源:HelloWorldPluginModule.java

示例13: entryPointClass

import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
/**
 * Returns the entry point class.
 *
 * @return {@link FileAuthMain}
 */
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
    return FileAuthMain.class;
}
 
开发者ID:hivemq,项目名称:file-auth-plugin,代码行数:10,代码来源:FileAuthenticationModule.java


注:本文中的com.hivemq.spi.PluginEntryPoint类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。