Parses a record from the string, and indicates that the record should be inserted into the zone. @throws IOException The record could not be parsed.
(Name name, int type, long ttl, String record)
| 132 | * @throws IOException The record could not be parsed. |
| 133 | */ |
| 134 | public void |
| 135 | add(Name name, int type, long ttl, String record) throws IOException { |
| 136 | newUpdate(Record.fromString(name, type, dclass, ttl, record, origin)); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Parses a record from the tokenizer, and indicates that the record |