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

com.dingtalk.spring.boot.DingTalkUserIdProvider Maven / Gradle / Ivy

There is a newer version: 2.7.x.20240823.RELEASE
Show newest version
package com.dingtalk.spring.boot;

import org.apache.commons.lang3.StringUtils;

public interface DingTalkUserIdProvider {

    default String getUserIdByDingTalkUser(String corpId, String appId, String account)  {
        return account;
    }

    default String getDingTalkUserByUserId(String corpId, String appId, String... userIds) {
        return StringUtils.join(userIds, ",");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy