sun.net.spi.nameservice.NameServiceDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-io Show documentation
Show all versions of core-io Show documentation
The official Couchbase JVM Core IO Library
// SPDX-License-Identifier: BSD-3-Clause
package sun.net.spi.nameservice;
public interface NameServiceDescriptor {
NameService createNameService() throws Exception;
String getProviderName();
String getType();
}