ImpsConstants.java
上传用户:szyujian
上传日期:2016-09-20
资源大小:320k
文件大小:3k
源码类别:

android开发

开发平台:

C/C++

  1. /*
  2.  * Copyright (C) 2007 Esmertec AG.
  3.  * Copyright (C) 2007 The Android Open Source Project
  4.  *
  5.  * Licensed under the Apache License, Version 2.0 (the "License");
  6.  * you may not use this file except in compliance with the License.
  7.  * You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package com.android.im.imps;
  18. public class ImpsConstants {
  19.     public static enum ImpsVersion {
  20.         IMPS_VERSION_12,
  21.         IMPS_VERSION_13,
  22.     }
  23.     // TODO: move these to some place else?
  24.     public static final String CLIENT_PRODUCER = "MOKIA";
  25.     public static final String CLIENT_VERSION = "0.1";
  26.     public static final String VERSION_11_NS = "http://www.wireless-village.org/CSP1.1";
  27.     public static final String TRANSACTION_11_NS = "http://www.wireless-village.org/TRC1.1";
  28.     public static final String PRESENCE_11_NS = "http://www.wireless-village.org/PA1.1";
  29.     public static final String VERSION_12_NS = "http://www.openmobilealliance.org/DTD/WV-CSP1.2";
  30.     public static final String TRANSACTION_12_NS = "http://www.openmobilealliance.org/DTD/WV-TRC1.2";
  31.     public static final String PRESENCE_12_NS = "http://www.openmobilealliance.org/DTD/WV-PA1.2";
  32.     public static final String VERSION_13_NS = "http://www.openmobilealliance.org/DTD/IMPS-CSP1.3";
  33.     public static final String TRANSACTION_13_NS = "http://www.openmobilealliance.org/DTD/IMPS-TRC1.3";
  34.     public static final String PRESENCE_13_NS = "http://www.openmobilealliance.org/DTD/IMPS-PA1.3";
  35.     public static final String ADDRESS_PREFIX = "wv:";
  36.     public static final String TRUE = "T";
  37.     public static final String FALSE = "F";
  38.     public static final String SUCCESS_CODE = "200";
  39.     public static final String Open = "Open";
  40.     public static final String DisplayName = "DisplayName";
  41.     public static final String GROUP_INVITATION = "GR";
  42.     public static final String Default = "Default";
  43.     public static final int STATUS_UNAUTHORIZED  = 401;
  44.     public static final int STATUS_NOT_IMPLEMENTED = 501;
  45.     public static final int STATUS_COULD_NOT_RECOVER_SESSION = 502;
  46.     // status 760 is IMPS 1.2 only
  47.     public static final int STATUS_AUTO_SUBSCRIPTION_NOT_SUPPORTED = 760;
  48.     /** presence UserAvailability values */
  49.     public static final String PRESENCE_AVAILABLE = "AVAILABLE";
  50.     public static final String PRESENCE_NOT_AVAILABLE = "NOT_AVAILABLE";
  51.     public static final String PRESENCE_DISCREET = "DISCREET";
  52.     /** presence ClientType values */
  53.     public static final String PRESENCE_MOBILE_PHONE = "MOBILE_PHONE";
  54.     public static final String PRESENCE_COMPUTER     = "COMPUTER";
  55.     public static final String PRESENCE_PDA          = "PDA";
  56.     public static final String PRESENCE_CLI          = "CLI";
  57.     public static final String PRESENCE_OTHER        = "OTHER";
  58.     public static final String COMMC_CAP_IM      = "IM";
  59. }