blob: 79a0e14d2bf32d727595c2993079ff4fdbd2096c [file] [log] [blame]
package com.android.bluetooth.tests;
import javax.obex.ObexTransport;
import android.bluetooth.BluetoothSocket;
public class ObexTestParams {
public int packageSize;
public int throttle;
public long bytesToSend;
public ObexTestParams(int packageSize, int throttle, long bytesToSend) {
this.packageSize = packageSize;
this.throttle = throttle;
this.bytesToSend = bytesToSend;
}
}