Uses of Class
org.mockserver.model.DnsRecord
-
Packages that use DnsRecord Package Description org.mockserver.model org.mockserver.serialization.model -
-
Uses of DnsRecord in org.mockserver.model
Methods in org.mockserver.model that return DnsRecord Modifier and Type Method Description static DnsRecordDnsRecord. aaaaRecord(String name, String ip)static DnsRecordDnsRecord. aRecord(String name, String ip)static DnsRecordDnsRecord. cnameRecord(String name, String cname)static DnsRecordDnsRecord. dnsRecord()static DnsRecordDnsRecord. mxRecord(String name, int priority, String exchange)static DnsRecordDnsRecord. ptrRecord(String name, String pointer)static DnsRecordDnsRecord. srvRecord(String name, int priority, int weight, int port, String target)static DnsRecordDnsRecord. txtRecord(String name, String text)DnsRecordDnsRecord. withDnsClass(DnsRecordClass dnsClass)DnsRecordDnsRecord. withName(String name)DnsRecordDnsRecord. withPort(Integer port)DnsRecordDnsRecord. withPriority(Integer priority)DnsRecordDnsRecord. withTtl(Integer ttl)DnsRecordDnsRecord. withType(DnsRecordType type)DnsRecordDnsRecord. withValue(String value)DnsRecordDnsRecord. withWeight(Integer weight)Methods in org.mockserver.model that return types with arguments of type DnsRecord Modifier and Type Method Description List<DnsRecord>DnsResponse. getAdditionalRecords()List<DnsRecord>DnsResponse. getAnswerRecords()List<DnsRecord>DnsResponse. getAuthorityRecords()Methods in org.mockserver.model with parameters of type DnsRecord Modifier and Type Method Description DnsResponseDnsResponse. withAdditionalRecords(DnsRecord... additionalRecords)DnsResponseDnsResponse. withAnswerRecord(DnsRecord answerRecord)DnsResponseDnsResponse. withAnswerRecords(DnsRecord... answerRecords)DnsResponseDnsResponse. withAuthorityRecords(DnsRecord... authorityRecords)Method parameters in org.mockserver.model with type arguments of type DnsRecord Modifier and Type Method Description DnsResponseDnsResponse. withAdditionalRecords(List<DnsRecord> additionalRecords)DnsResponseDnsResponse. withAnswerRecords(List<DnsRecord> answerRecords)DnsResponseDnsResponse. withAuthorityRecords(List<DnsRecord> authorityRecords) -
Uses of DnsRecord in org.mockserver.serialization.model
Methods in org.mockserver.serialization.model that return DnsRecord Modifier and Type Method Description DnsRecordDnsRecordDTO. buildObject()Constructors in org.mockserver.serialization.model with parameters of type DnsRecord Constructor Description DnsRecordDTO(DnsRecord dnsRecord)
-