Package org.jscsi.scsi.tasks.lu

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


         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);
      }

      Class<? extends BufferedTask> taskClass =
            tasks.get(command.getCommandDescriptorBlock().getClass());
View Full Code Here

TOP

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

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.