| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| TestUnitReadyCdb |
|
| 1.0;1 |
| 1 | package org.jscsi.target.scsi.cdb; | |
| 2 | ||
| 3 | ||
| 4 | import java.nio.ByteBuffer; | |
| 5 | ||
| 6 | ||
| 7 | /** | |
| 8 | * This class represents Command Descriptor Blocks for the <code>TEST UNIT READY</code> SCSI command. | |
| 9 | * | |
| 10 | * @author Andreas Ergenzinger | |
| 11 | */ | |
| 12 | public class TestUnitReadyCdb extends CommandDescriptorBlock { | |
| 13 | ||
| 14 | public TestUnitReadyCdb (ByteBuffer buffer) { | |
| 15 | 0 | super(buffer); |
| 16 | // no additional fields to deserialize | |
| 17 | 0 | } |
| 18 | } |