PageRenderTime 2ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/XMLRPC/src/org/xmlrpc/android/Tag.java

http://android-xmlrpc.googlecode.com/
Java | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | 5ab6ea3ddf15c66e9d192eb1890fe48f MD5 | raw file
  1. package org.xmlrpc.android;
  2. public class Tag {
  3. static final String LOG = "XMLRPC";
  4. static final String METHOD_CALL = "methodCall";
  5. static final String METHOD_NAME = "methodName";
  6. static final String METHOD_RESPONSE = "methodResponse";
  7. static final String PARAMS = "params";
  8. static final String PARAM = "param";
  9. static final String FAULT = "fault";
  10. static final String FAULT_CODE = "faultCode";
  11. static final String FAULT_STRING = "faultString";
  12. }