org.nerve.tools.ssh.bean.IMessageBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nerve-ssh Show documentation
Show all versions of nerve-ssh Show documentation
2016年4月25日17:12:24
封装基于SSH的端口转发、文件上传和下载、执行shell等功能
2016年5月13日11:49:57
打包时exclude log4j.properties
The newest version!
package org.nerve.tools.ssh.bean;
import java.util.List;
/**
* com.zeus.ssh.bean
* Created by zengxm on 2016/2/23 0023.
*/
public interface IMessageBuilder {
IMessageBuilder put(String msg, Object... objs);
String getLast();
List getMessageList();
}