/** * @author ������ * @version 1.0 * @created 26-10��-2025 23:19:03 */ public class HttpPlugin implements CommunicationPlugin { public HttpPlugin(){ } public void finalize() throws Throwable { } /** * * @param content */ @Override public boolean send(String content){ System.out.println("HTTP发送内容: " + content); return true; } }//end HttpPlugin