blob: 37cbe04268727cfe1eaf623c5258c90b2bab65be [file] [log] [blame]
Meki Cherkaouif441d3a2012-04-22 15:17:52 -07001//TODO INCOMPLETE
2/*
3 * @author: ucla-cs
4 *
5 * Encodes CCN object into xml tags
6 */
7var DataUtils = require('./DataUtils').DataUtils;
8
9 var /*DateFormat*/ canonicalWriteDateFormat = null;
10 var /* DateFormat*/ canonicalReadDateFormat = null;
11 var /*String*/ PAD_STRING = "000000000";
12 var /*int*/ NANO_LENGTH = 9;
13
14var TextXMLCodec = function TextXMLCodec(){
15
16 this.CCN_NAMESPACE = "http://www.parc.com/ccn"; // String
17 this.CCN_PREFIX = "ccn"; // String
18 this.CODEC_NAME = "Text";// String
19 this.BINARY_ATTRIBUTE = "ccnbencoding";// String
20 this.BINARY_ATTRIBUTE_VALUE = "base64Binary";// String
21
22
23};
24