本文整理汇总了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;
}
示例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;
}
示例6: entryPointClass
import com.hivemq.spi.PluginEntryPoint; //导入依赖的package包/类
@Override
protected Class<? extends PluginEntryPoint> entryPointClass() {
return MqttMessageLog.class;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}