blob: b2897760240d2d771f623307e823f1e755f8aafc [file] [log] [blame]
package com.matter.controller.commands.pairing;
import chip.devicecontroller.ChipDeviceController;
import com.matter.controller.commands.common.CredentialsIssuer;
public final class PairEthernetCommand extends PairingCommand {
public PairEthernetCommand(ChipDeviceController controller, CredentialsIssuer credsIssue) {
super(
controller, "ethernet", PairingModeType.ETHERNET, PairingNetworkType.ETHERNET, credsIssue);
}
@Override
protected void runCommand() {}
}