package strategy; import tool.StrUtils; /** * Copyright (c) 2023, ustchcs and its affiliates. All rights reserved. More info see www.ustchcs.com * * @author cch * @package java-test strategy * @node */ public class WechatStrategy implements IStrategy { @Override public void authenticate(String name, String password) { System.out.println(StrUtils.concatNullToEmpty("wechat login:name=", name)); } }