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

dev.galasa.zos3270.internal.datastream.AbstractQueryReply Maven / Gradle / Ivy

The newest version!
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.zos3270.internal.datastream;

public abstract class AbstractQueryReply {

    public static final byte QUERY_REPLY = (byte) 0x81;

    public abstract byte[] toByte();

    public abstract byte getID();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy