1 package com.android.bluetooth.tests; 2 3 import java.io.IOException; 4 5 import javax.obex.HeaderSet; 6 import javax.obex.Operation; 7 8 /** 9 * Interface to validate test step result 10 */ 11 public interface ISeqStepValidator { validate(SeqStep step, HeaderSet response, Operation op)12 boolean validate(SeqStep step, HeaderSet response, Operation op) 13 throws IOException; 14 15 } 16