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

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

There is a newer version: 3.7.2
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 1999-2004 Brian Wellington ([email protected])

package com.couchbase.client.core.deps.org.xbill.DNS;

import java.util.List;

/**
 * Sender Policy Framework (discontinued in RFC 7208)
 *
 * @author Brian Wellington
 * @see RFC 7208: Sender Policy Framework (SPF) for
 *     Authorizing Use of Domains in Email, Version 1
 */
public class SPFRecord extends TXTBase {
  SPFRecord() {}

  /**
   * Creates a SPF Record from the given data
   *
   * @param strings The text strings
   * @throws IllegalArgumentException One of the strings has invalid escapes
   */
  public SPFRecord(Name name, int dclass, long ttl, List strings) {
    super(name, Type.SPF, dclass, ttl, strings);
  }

  /**
   * Creates a SPF Record from the given data
   *
   * @param string One text string
   * @throws IllegalArgumentException The string has invalid escapes
   */
  public SPFRecord(Name name, int dclass, long ttl, String string) {
    super(name, Type.SPF, dclass, ttl, string);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy