All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dst.client.cmd.UnkonwnHandler Maven / Gradle / Ivy

The newest version!
package org.dst.client.cmd;

import org.dst.client.DefaultDstClient;

public class UnkonwnHandler extends Handler {
  public UnkonwnHandler(DefaultDstClient client) {
    super(client);
  }

  @Override
  public ClientResult getCmdResult(String[] command) {
    clientResult.setResult("unsupported data type");
    return clientResult;
  }

  @Override
  public ClientResult apply(DstCommandWithType commandWithType) {
    return getCmdResult(commandWithType.command);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy