/*
* PS3 Media Server, for streaming any medias to your PS3.
* Copyright (C) 2008 A.Brochard
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2
* of the License only.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package net.pms.network;
class HTTPXMLHelper {
private final static String CRLF = "\r\n";
static final String XML_HEADER = "";
static final String SOAP_ENCODING_HEADER = "" + CRLF + "";
static final String SOAP_ENCODING_FOOTER = "" + CRLF + "";
static final String GETSYSTEMUPDATEID_HEADER = "";
static final String GETSYSTEMUPDATEID_FOOTER = "";
static final String BROWSERESPONSE_HEADER = "";
static final String BROWSERESPONSE_FOOTER = "";
static final String SEARCHRESPONSE_HEADER = "";
static final String SEARCHRESPONSE_FOOTER = "";
static final String SORTCAPS_RESPONSE = "";
static final String SEARCHCAPS_RESPONSE = "";
static final String PROTOCOLINFO_RESPONSE = "";
static final String RESULT_HEADER = "";
static final String RESULT_FOOTER = "";
static final String DIDL_HEADER = "<DIDL-Lite xmlns=\"urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:upnp=\"urn:schemas-upnp-org:metadata-1-0/upnp/\">";
static final String DIDL_FOOTER = "</DIDL-Lite>";
static final String XBOX_1 = "" + CRLF + "1" + CRLF + "";
static final String XBOX_2 = "" + CRLF + "1" + CRLF + "";
}