/* ************************************************************************ # # DivConq # # http://divconq.com/ # # Copyright: # Copyright 2014 eTimeline, LLC. All rights reserved. # # License: # See the license.txt file in the project's top-level directory for details. # # Authors: # * Andy White # ************************************************************************ */ package divconq.interchange.sshd; import org.apache.sshd.server.Command; import org.apache.sshd.server.CommandFactory; public class CommandFactoryImpl implements CommandFactory { @Override public Command createCommand(String arg0) { // TODO Auto-generated method stub return null; } }