| 1 | |
package org.jscsi.target.scsi.readCapacity; |
| 2 | |
|
| 3 | |
|
| 4 | |
import org.jscsi.target.scsi.IResponseData; |
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
public abstract class ReadCapacityParameterData implements IResponseData { |
| 15 | |
|
| 16 | |
protected final long returnedLogicalBlockAddress; |
| 17 | |
|
| 18 | |
protected final int logicalBlockLengthInBytes; |
| 19 | |
|
| 20 | 0 | public ReadCapacityParameterData (final long returnedLogicalBlockAddress, final int logicalBlockLengthInBytes) { |
| 21 | 0 | this.returnedLogicalBlockAddress = returnedLogicalBlockAddress; |
| 22 | 0 | this.logicalBlockLengthInBytes = logicalBlockLengthInBytes; |
| 23 | 0 | } |
| 24 | |
} |