View Javadoc

1   package org.jscsi.target.scsi;
2   
3   /**
4    * In addition to dictating the serialization methods inherited from {@link ISerializable}, this interface serves as a
5    * marker interface for all classes that can be sent as SCSI Response data, i.e. as information sent in response to a
6    * successful SCSI request.
7    * <p>
8    * {@link IResponseData} can either be a part of {@link ScsiResponseDataSegment} objects or it can be used individually
9    * as Data-In PDU payload (followed by a SCSI Response PDU with status but with data segment length zero.
10   * 
11   * @author Andreas Ergenzinger
12   */
13  public interface IResponseData extends ISerializable {
14      // nothing here
15  }