package io.grpc; import java.util.Collections; import java.util.List; /* loaded from: classes6.dex */ public abstract class HandlerRegistry { public abstract ServerMethodDefinition lookupMethod(String str, String str2); public List getServices() { return Collections.emptyList(); } public final ServerMethodDefinition lookupMethod(String str) { return lookupMethod(str, null); } }