All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.net.scheme.DnsScheme Maven / Gradle / Ivy

package org.xbib.net.scheme;

/**
 * The DNS URI scheme.
 * @see DNS RFC
 */
class DnsScheme extends HttpScheme {

    DnsScheme() {
        super("dns", 53);
    }

    DnsScheme(String name, int port) {
        super(name, port);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy