All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.plug.data.service.PluginService Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
/*
 * 
 * 
 * 
 */

package com.haoxuer.discover.plug.data.service;


import com.haoxuer.discover.plug.api.PushPlugin;
import com.haoxuer.discover.plug.api.SendCodePlugin;
import com.haoxuer.discover.plug.api.StoragePlugin;

import java.util.List;

/**
 * Service - 插件
 */
public interface PluginService {
  
  /**
   * 获取支付插件
   *
   * @return 支付插件
   */
  List getPushPlugins();
  
  /**
   * 获取存储插件
   *
   * @return 存储插件
   */
  List getStoragePlugins();
  
  
  /**
   * 获取发送短信插件
   *
   * @return
   */
  List getSendCodePlugins();
  
  
  /**
   * 获取支付插件
   *
   * @param isEnabled 是否启用
   * @return 支付插件
   */
  List getPushPlugins(boolean isEnabled);
  
  /**
   * 获取存储插件
   *
   * @param isEnabled 是否启用
   * @return 存储插件
   */
  List getStoragePlugins(boolean isEnabled);
  
  
  /**
   * 获取发送短信插件
   *
   * @param isEnabled
   * @return
   */
  List getSendCodePlugins(boolean isEnabled);
  
  
  /**
   * 获取支付插件
   *
   * @param id ID
   * @return 支付插件
   */
  PushPlugin getPushPlugin(String id);
  
  /**
   * 获取存储插件
   *
   * @param id ID
   * @return 存储插件
   */
  StoragePlugin getStoragePlugin(String id);
  
  
  /**
   * 获取发送短信插件
   *
   * @param id
   * @return
   */
  SendCodePlugin getSendCodePlugin(String id);
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy