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

com.couchbase.client.core.deps.org.xbill.DNS.HTTPSRecord Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
package com.couchbase.client.core.deps.org.xbill.DNS;

import java.util.List;

/**
 * HTTPS Service Location and Parameter Binding Record
 *
 * @see draft-ietf-dnsop-svcb-https
 * @since 3.3
 */
public class HTTPSRecord extends SVCBBase {
  HTTPSRecord() {}

  public HTTPSRecord(
      Name name, int dclass, long ttl, int priority, Name domain, List params) {
    super(name, Type.HTTPS, dclass, ttl, priority, domain, params);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy