com.spring.boxes.webhook.starter.push.Notifier Maven / Gradle / Ivy
The newest version!
package com.spring.boxes.webhook.starter.push;
import java.util.regex.Pattern;
public interface Notifier {
Pattern PHONE_PATTERN = Pattern.compile("(13\\d|14[579]|15[0-3,5-9]|166|17[0135678]|18\\d|19[89])\\d{8}");
/**
* 处理 通知消息 得到真正的请求消息对象
*
* @param message 通知消息
* @return 请求消息对象
*/
R notify(M message);
}