View Javadoc

1   package org.jscsi.target.scsi.cdb;
2   
3   
4   import java.nio.ByteBuffer;
5   
6   
7   /**
8    * This abstract class represents Command Descriptor Blocks for <code>READ</code> SCSI commands.
9    * 
10   * @see Read6Cdb
11   * @see Read10Cdb
12   * @author Andreas Ergenzinger
13   */
14  public abstract class ReadCdb extends ReadOrWriteCdb {
15  
16      public ReadCdb (ByteBuffer buffer) {
17          super(buffer);
18      }
19  
20  }