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

com.bytezone.dm3270.extended.UnbindCommand Maven / Gradle / Ivy

Go to download

This is a trimmed down version of https://github.com/dmolony/dm3270 to be used as TN3270 client library

There is a newer version: 0.9.1
Show newest version
package com.bytezone.dm3270.extended;

public class UnbindCommand extends AbstractExtendedCommand {

  public UnbindCommand(CommandHeader commandHeader, byte[] buffer, int offset,
      int length) {
    super(commandHeader, buffer, offset, length);
  }

  @Override
  public String getName() {
    return "Unbind";
  }

  @Override
  public String toString() {
    return String.format("UNB: %02X", data[0]);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy