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

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

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

import java.nio.ByteBuffer;

public class AttributeResetAllAttributes implements IAttribute {

    public static final byte ATTRIBUTE_ID = 0x00;

    private final byte       reset;

    public AttributeResetAllAttributes(ByteBuffer buffer) {
        this.reset = buffer.get();
    }

    public byte getReset() {
        return reset;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy