01: package com.sun.portal.wireless.tests;
02:
03: public class UPSDK41 implements Device {
04: private String[][] headers = {
05: { "Accept-Language", "en" },
06: { "Content-Type", "application/x-www-form-urlencoded" },
07: { "Accept-Charset", "ISO-8859-1, UTF-8, *" },
08: {
09: "Accept",
10: "application/x-hdmlc, application/x-up-alert, application/x-up-cacheop, application/x-up-device, application/x-up-digestentry, application/vnd.wap.wml, text/x-wap.wml, text/vnd.wap.wml, application/vnd.wap.wmlscript, text/vnd.wap.wmlscript, application/vnd.uplanet.channel, application/vnd.uplanet.list, text/x-hdml, text/plain, image/vnd.wap.wbmp, image/bmp, application/remote-printing text/x-hdml;version=3.1, text/x-hdml;version=3.0, text/x-hdml;version=2.0, image/bmp, text/html" },
11: { "User-Agent",
12: "OWG1 UP/4.1.20a UP.Browser/4.1.20a-XXXX UP.Link/4.1.HTTP-DIRECT" }, };
13:
14: public String[][] getHeaders() {
15: return (headers);
16: }
17:
18: }
|