1 /* 2 * Copyright (c) 2015, Motorola Mobility LLC 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are met: 7 * - Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * - Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * - Neither the name of Motorola Mobility nor the 13 * names of its contributors may be used to endorse or promote products 14 * derived from this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 18 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MOTOROLA MOBILITY LLC BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 26 * DAMAGE. 27 */ 28 29 package com.android.service.ims; 30 31 import com.android.ims.internal.Logger; 32 import com.android.service.ims.presence.ContactCapabilityResponse; 33 34 /** 35 * Task 36 */ 37 public class Task{ 38 /* 39 * The logger 40 */ 41 private Logger logger = Logger.getLogger(this.getClass().getName()); 42 43 // filled before send the reques 44 public int mTaskId; 45 46 // filled before send the request 47 // map to QRCS_PRES_CMD_ID 48 // QRCS_PRES_CMD_PUBLISHMYCAP 49 // QRCS_PRES_CMD_GETCONTACTCAP, we use it for capability 50 // QRCS_PRES_CMD_GETCONTACTLISTCAP, we use it for availability 51 // QRCS_PRES_CMD_SETNEWFEATURETAG 52 public int mCmdId; 53 54 public int mCmdStatus; 55 56 //filled after IQPresListener_CMDStatus 57 public int mSipRequestId; 58 59 // filled after IQPresListener_SipResponseReceived 60 public int mSipResponseCode; 61 62 // filled after IQPresListener_SipResponseReceived 63 public String mSipReasonPhrase; 64 65 public ContactCapabilityResponse mListener; 66 Task(int taskId, int cmdId, ContactCapabilityResponse listener)67 public Task(int taskId, int cmdId, ContactCapabilityResponse listener) { 68 mTaskId = taskId; 69 mCmdId = cmdId; 70 mListener = listener; 71 } 72 toString()73 public String toString(){ 74 return "Task: mTaskId=" + mTaskId + 75 " mCmdId=" + mCmdId + 76 " mCmdStatus=" + mCmdStatus + 77 " mSipRequestId=" + mSipRequestId + 78 " mSipResponseCode=" + mSipResponseCode + 79 " mSipReasonPhrase=" + mSipReasonPhrase; 80 } 81 }; 82 83