aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/android/ims/ImsServiceClass.java
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2014-06-11 08:39:38 -0700
committerWink Saville <wink@google.com>2014-06-11 15:12:44 -0700
commitef36ef67e009449300b0150c60c9f637e205d79e (patch)
tree1ae6176e55381f8337780b00f3b29f6d951b42d2 /src/java/com/android/ims/ImsServiceClass.java
parent7a655848f691c0d27421b293f96782a1bd5fb081 (diff)
downloadims-ef36ef67e009449300b0150c60c9f637e205d79e.tar.gz
Merge kwd to master
Change-Id: Idb607c0aa32f80fe4fe1539aedea7a221e9e7f04
Diffstat (limited to 'src/java/com/android/ims/ImsServiceClass.java')
-rw-r--r--src/java/com/android/ims/ImsServiceClass.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/java/com/android/ims/ImsServiceClass.java b/src/java/com/android/ims/ImsServiceClass.java
new file mode 100644
index 00000000..a4e43bcc
--- /dev/null
+++ b/src/java/com/android/ims/ImsServiceClass.java
@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.ims;
+
+/**
+ * This class defines an identifier for each IMS service category.
+ *
+ * @hide
+ */
+public class ImsServiceClass {
+ /**
+ * Service classes
+ * It defines the service classes for IMS-based services.
+ */
+
+ /**
+ * MMTEL
+ * supports the IMS multimedia telephony communication service
+ * defined in 3GPP & GSMA IR.92, IR.94.
+ */
+ public static final int MMTEL = 1;
+
+ /**
+ * RCS
+ * supports the RCS service defined in GSMA RCS.
+ */
+ /** public static final int RCS = 2; */
+}