| Package | Description |
|---|---|
| org.apache.directory.server.dns.io.decoder |
Provides the decoders for DNS messages and resource records.
|
| org.apache.directory.server.dns.io.encoder |
Provides the encoders for DNS messages and resource records.
|
| org.apache.directory.server.dns.messages |
Provides message objects for DNS messages and resource records.
|
| org.apache.directory.server.dns.service |
Provides the DNS Service.
|
| org.apache.directory.server.dns.store |
Provides
RecordStore interface for serving DNS resource records
to DnsServer. |
| org.apache.directory.server.dns.store.jndi | |
| org.apache.directory.server.dns.store.jndi.operations |
Provides Command pattern objects for working with the JNDI backing store.
|
| Modifier and Type | Method and Description |
|---|---|
private java.util.List<QuestionRecord> |
DnsMessageDecoder.getQuestions(org.apache.mina.core.buffer.IoBuffer byteBuffer,
short questionCount) |
| Modifier and Type | Method and Description |
|---|---|
void |
QuestionRecordEncoder.put(org.apache.mina.core.buffer.IoBuffer out,
QuestionRecord question)
Encodes the
QuestionRecord into the IoBuffer. |
| Modifier and Type | Method and Description |
|---|---|
private void |
DnsMessageEncoder.putQuestionRecords(org.apache.mina.core.buffer.IoBuffer byteBuffer,
java.util.List<QuestionRecord> questions) |
| Modifier and Type | Field and Description |
|---|---|
private java.util.List<QuestionRecord> |
DnsMessageModifier.questionRecords |
private java.util.List<QuestionRecord> |
DnsMessage.questionRecords |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<QuestionRecord> |
DnsMessage.getQuestionRecords() |
| Modifier and Type | Method and Description |
|---|---|
void |
DnsMessageModifier.setQuestionRecords(java.util.List<QuestionRecord> questionRecords) |
| Constructor and Description |
|---|
DnsMessage(int transactionId,
MessageType messageType,
OpCode opCode,
boolean authoritativeAnswer,
boolean truncated,
boolean recursionDesired,
boolean recursionAvailable,
boolean reserved,
boolean acceptNonAuthenticatedData,
ResponseCode responseCode,
java.util.List<QuestionRecord> question,
java.util.List<ResourceRecord> answer,
java.util.List<ResourceRecord> authority,
java.util.List<ResourceRecord> additional)
Creates a new instance of DnsMessage.
|
| Modifier and Type | Method and Description |
|---|---|
private static java.util.Set<ResourceRecord> |
DomainNameService.getEntry(RecordStore store,
QuestionRecord question)
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<ResourceRecord> |
RecordStore.getRecords(QuestionRecord question)
Returns a set of
ResourceRecords, given a DNS QuestionRecord. |
java.util.Set<ResourceRecord> |
RecordStoreStub.getRecords(QuestionRecord question) |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<ResourceRecord> |
MultiBaseSearch.getRecords(QuestionRecord question) |
java.util.Set<ResourceRecord> |
SingleBaseSearch.getRecords(QuestionRecord question) |
java.util.Set<ResourceRecord> |
JndiRecordStoreImpl.getRecords(QuestionRecord question) |
java.util.Set<ResourceRecord> |
SearchStrategy.getRecords(QuestionRecord question)
Returns a set of
ResourceRecords, given a DNS QuestionRecord. |
| Modifier and Type | Field and Description |
|---|---|
private QuestionRecord |
GetRecords.question
The name of the question to get.
|
private QuestionRecord |
GetFlatRecord.question
The name of the question to get.
|
| Constructor and Description |
|---|
GetFlatRecord(QuestionRecord question)
Creates the action to be used against the embedded JNDI provider.
|
GetRecords(QuestionRecord question)
Creates the action to be used against the embedded JNDI provider.
|