java.lang.Object
com.aoindustries.aoserv.client.AoservObject<Integer,Record>
com.aoindustries.aoserv.client.CachedObject<Integer,Record>
com.aoindustries.aoserv.client.CachedObjectIntegerKey<Record>
com.aoindustries.aoserv.client.dns.Record
- All Implemented Interfaces:
Streamable
,StreamReadable
,StreamWritable
,Row
,AoservReadable
,AoservStreamable
,AoservWritable
,Removable
,SingleTableObject<Integer,
Record>
A
DNSRecord
is one line of a DNSZone
(name server zone file).- Author:
- AO Industries, Inc.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
static final short
static final int
static final int
static final int
static final int
Fields inherited from class com.aoindustries.aoserv.client.CachedObjectIntegerKey
pkey
Fields inherited from class com.aoindustries.aoserv.client.CachedObject
table
Fields inherited from class com.aoindustries.aoserv.client.AoservObject
USE_ARRAY_OF_DOMAIN, USE_SQL_DATA, USE_SQL_DATA_WRITE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the domain, but in fully-qualified, absolute path (with trailing period).Lists the reasons an object may not be removed.protected Object
getColumnImpl
(int i) short
getFlag()
int
getId()
int
getPort()
int
getTag()
int
getTtl()
getType()
int
getZone()
boolean
hasConflict
(Record other) Checks if this record conflicts with the provided record, meaning they may not both exist in a zone file at the same time.void
Initializes this object from the raw database contents.static boolean
isValidFlag
(short flag) Verifies a flag is eitherNO_FLAG
or between 0 and 0xFF.void
read
(StreamableInput in, AoservProtocol.Version protocolVersion) void
remove()
Removes this object, and all dependant objects, from the system.AoservObject.toString()
implementation that is allowed to throw exceptions.void
write
(StreamableOutput out, AoservProtocol.Version protocolVersion) Methods inherited from class com.aoindustries.aoserv.client.CachedObjectIntegerKey
equals, getKey, getPkey, hashCode
Methods inherited from class com.aoindustries.aoserv.client.CachedObject
getTable, setTable
Methods inherited from class com.aoindustries.aoserv.client.AoservObject
compare, compare, compare, compare, compareIgnoreCaseConsistentWithEquals, compareTo, compareTo, compareTo, getAccountingCode, getColumn, getColumns, getColumns, getDomainLabel, getDomainLabels, getDomainName, getDto, getEmail, getGecos, getGroupId, getHashedKey, getHashedPassword, getHostname, getInetAddress, getLinuxId, getLinuxUserName, getMacAddress, getMysqlDatabaseName, getMysqlServerName, getMysqlUserName, getPort, getPostgresDatabaseName, getPostgresServerName, getPostgresUserId, getTableSchema, getTimeMillis, getTimeMillis, getUnixPath, getUserId, read, toString, write
-
Field Details
-
NO_PRIORITY
public static final int NO_PRIORITY- See Also:
-
NO_WEIGHT
public static final int NO_WEIGHT- See Also:
-
NO_PORT
public static final int NO_PORT- See Also:
-
NO_FLAG
public static final short NO_FLAG- See Also:
-
NO_TTL
public static final int NO_TTL- See Also:
-
CAA_TAG_ISSUE
- See Also:
-
CAA_TAG_ISSUEWILD
- See Also:
-
CAA_TAG_IODEF
- See Also:
-
CAA_TAG_CONTACTEMAIL
- See Also:
-
CAA_TAG_CONTACTPHONE
- See Also:
-
-
Constructor Details
-
Record
Deprecated.Only required for implementation, do not use directly.- See Also:
-
-
Method Details
-
getColumnImpl
- Specified by:
getColumnImpl
in classAoservObject<Integer,
Record>
-
getId
public int getId() -
getZone_zone
-
getZone
- Throws:
SQLException
IOException
-
getDomain
-
getType_type
-
getType
- Throws:
SQLException
IOException
-
getPriority
public int getPriority() -
getWeight
public int getWeight() -
getPort
public int getPort() -
isValidFlag
public static boolean isValidFlag(short flag) Verifies a flag is eitherNO_FLAG
or between 0 and 0xFF. -
getFlag
public short getFlag()- Returns:
NO_FLAG
when none, or a value between 0 and 0xFF.
-
getTag
-
getDestination
-
getDhcpAddress_id
-
getDhcpAddress
- Throws:
SQLException
IOException
-
getTtl
public int getTtl() -
init
Description copied from class:AoservObject
Initializes this object from the raw database contents.- Specified by:
init
in classAoservObject<Integer,
Record> - Parameters:
result
- theResultSet
containing the row to copy into this object- Throws:
SQLException
-
read
- Specified by:
read
in interfaceAoservReadable
- Specified by:
read
in interfaceAoservStreamable
- Specified by:
read
in classAoservObject<Integer,
Record> - Throws:
IOException
-
write
- Specified by:
write
in interfaceAoservStreamable
- Specified by:
write
in interfaceAoservWritable
- Specified by:
write
in classAoservObject<Integer,
Record> - Throws:
IOException
-
getAbsoluteDomain
Gets the domain, but in fully-qualified, absolute path (with trailing period). -
hasConflict
Checks if this record conflicts with the provided record, meaning they may not both exist in a zone file at the same time. The current conflicts checked are:- CNAME must exist by itself, and only one CNAME maximum, per domain
- Multiple TXT entries of "v=spf1", with or without surrounded by quotes, see 4.5. Selecting Records.
- Returns:
true
if there is a conflict,false
if the records may coexist.
-
getTableId
- Specified by:
getTableId
in classAoservObject<Integer,
Record>
-
getCannotRemoveReasons
Description copied from interface:Removable
Lists the reasons an object may not be removed.- Specified by:
getCannotRemoveReasons
in interfaceRemovable
- Returns:
- an empty
List<CannotRemoveReason>
if this object may be removed, or a list of descriptions
-
remove
Description copied from interface:Removable
Removes this object, and all dependant objects, from the system.- Specified by:
remove
in interfaceRemovable
- Throws:
IOException
SQLException
-
toStringImpl
Description copied from class:AoservObject
AoservObject.toString()
implementation that is allowed to throw exceptions.Implementation Note:
This default implementation callsAoservObject.toString()
on the key (fromAoservObject.getKey()
). When the key isnull
, uses the default implementation fromObject.toString()
.- Overrides:
toStringImpl
in classCachedObjectIntegerKey<Record>
-