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

org.jscsi.target.scsi.cdb.ReadCdb Maven / Gradle / Ivy

The newest version!
package org.jscsi.target.scsi.cdb;


import java.nio.ByteBuffer;


/**
 * This abstract class represents Command Descriptor Blocks for READ SCSI commands.
 * 
 * @see Read6Cdb
 * @see Read10Cdb
 * @author Andreas Ergenzinger
 */
public abstract class ReadCdb extends ReadOrWriteCdb {

    public ReadCdb (ByteBuffer buffer) {
        super(buffer);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy