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

microsoft.exchange.webservices.data.DnsRecord Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

The newest version!
/**************************************************************************
 * copyright file="DnsRecord.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the DnsRecord.java.
 **************************************************************************/

package microsoft.exchange.webservices.data;

/**
 * Represents a DnsRecord.
 */
abstract class DnsRecord {
	/*
	 * Name field of this DNS Record
	 */
	/** The name. */
	private String name;
	/*
	 * The suggested time for this dnsRecord to be valid
	 */
	/** The time to live. */
	private int timeToLive;

	/**
	 * Retrieves the value of the name property.
	 * 
	 * @return name
	 */
	public String getName() {
		return name;
	}

	/**
	 * Retrieves the value of the timeToLive property.
	 * 
	 * @return timeToLive
	 */
	public int getTimeToLive() {
		return timeToLive;
	}

	/**
	 * loads the DNS Record.
	 * 
	 * @param value
	 *            the value
	 * @throws DnsException
	 *             the dns exception
	 */
	protected void load(String value) throws DnsException {

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy