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

com.binarywang.solon.wxjava.mp_multi.service.WxMpMultiServicesImpl Maven / Gradle / Ivy

package com.binarywang.solon.wxjava.mp_multi.service;

import me.chanjar.weixin.mp.api.WxMpService;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * 企业微信 {@link WxMpMultiServices} 默认实现
 *
 * @author yl
 * created on 2024/1/23
 */
public class WxMpMultiServicesImpl implements WxMpMultiServices {
  private final Map services = new ConcurrentHashMap<>();

  @Override
  public WxMpService getWxMpService(String tenantId) {
    return this.services.get(tenantId);
  }

  /**
   * 根据租户 Id,添加一个 WxMpService 到列表
   *
   * @param tenantId    租户 Id
   * @param wxMpService WxMpService 实例
   */
  public void addWxMpService(String tenantId, WxMpService wxMpService) {
    this.services.put(tenantId, wxMpService);
  }

  @Override
  public void removeWxMpService(String tenantId) {
    this.services.remove(tenantId);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy