Package org.jscsi.scsi.tasks.lu

Examples of org.jscsi.scsi.tasks.lu.ModeSenseTask


      // check for basic commands
      switch (command.getCommandDescriptorBlock().getOperationCode())
      {
         case ModeSense6.OPERATION_CODE :
         case ModeSense10.OPERATION_CODE :
            return new ModeSenseTask(port, command, modePageRegistry, inquiryDataRegistry);
         case TestUnitReady.OPERATION_CODE :
            return new TestUnitReadyTask(port, command, modePageRegistry, inquiryDataRegistry);
         case Inquiry.OPERATION_CODE :
            return new InquiryTask(port, command, modePageRegistry, inquiryDataRegistry);
      }
View Full Code Here

TOP

Related Classes of org.jscsi.scsi.tasks.lu.ModeSenseTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.