android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/android-ibc-forum.git
Log | Files | Refs

Tag.java (455B)


      1 package org.xmlrpc.android;
      2 
      3 public class Tag {
      4 	static final String LOG = "XMLRPC";
      5 	static final String METHOD_CALL = "methodCall";
      6 	static final String METHOD_NAME = "methodName";
      7 	static final String METHOD_RESPONSE = "methodResponse";
      8 	static final String PARAMS = "params";
      9 	static final String PARAM = "param";
     10 	static final String FAULT = "fault";
     11 	static final String FAULT_CODE = "faultCode";
     12 	static final String FAULT_STRING = "faultString";
     13 }