1 18 19 20 package sync4j.framework.core; 21 22 import sync4j.framework.core.VerDTD; 23 import sync4j.framework.core.VerProto; 24 25 32 public final class Constants { 33 public static final String MIMETYPE_SYNCMLDS_XML 34 = "application/vnd.syncml+xml"; 35 public static final String MIMETYPE_SYNCMLDS_WBXML 36 = "application/vnd.syncml+wbxml"; 37 public static final String MIMETYPE_SYNCML_DEVICEINFO_XML 38 = "application/vnd.syncml-devinf+xml"; 39 public static final String MIMETYPE_SYNCML_DEVICEINFO_WBXML 40 = "application/vnd.syncml-devinf+wbxml"; 41 42 public static final String NAMESPACE_METINF = "syncml:metinf"; 43 public static final String NAMESPACE_DEVINF = "syncml:devinf"; 44 45 public static final VerDTD DTD_1_0 = new VerDTD("1.0"); 46 public static final VerDTD DTD_1_1 = new VerDTD("1.1"); 47 48 public static final VerProto PROT_1_0 = new VerProto("SyncML/1.0"); 49 public static final VerProto PROT_1_1 = new VerProto("SyncML/1.1"); 50 public static final VerProto PROT_1_1_1 = new VerProto("SyncML/1.1.1"); 51 52 public static final String FORMAT_B64 = "b64"; 53 } 54 | Popular Tags |