1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 *
19 */
20
21 package org.apache.directory.server.dns.io.encoder;
22
23
24 import org.apache.directory.server.dns.messages.ResourceRecord;
25 import org.apache.directory.server.dns.store.DnsAttribute;
26 import org.apache.mina.common.ByteBuffer;
27
28
29 /**
30 * 3.3.14. TXT RDATA format
31 *
32 * +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
33 * / TXT-DATA /
34 * +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
35 *
36 * where:
37 *
38 * TXT-DATA One or more <character-string>s.
39 *
40 * TXT RRs are used to hold descriptive text. The semantics of the text
41 * depends on the domain where it is found.
42 *
43 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
44 * @version $Rev: 501531 $, $Date: 2007-01-30 20:51:18 +0100 (Di, 30 Jan 2007) $
45 */
46 public class TextRecordEncoder extends ResourceRecordEncoder
47 {
48 protected void putResourceRecordData( ByteBuffer byteBuffer, ResourceRecord record )
49 {
50 putCharacterString( byteBuffer, record.get( DnsAttribute.CHARACTER_STRING ) );
51 }
52 }