blob: e1d4fe3f06db8731d80e9dbcbd70042ce8b73cfb [file] [log] [blame]
/*
* Copyright (C) 2007 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.internal.telephony.cat;
import android.compat.annotation.UnsupportedAppUsage;
public class CatResponseMessage {
CommandDetails mCmdDet = null;
ResultCode mResCode = ResultCode.OK;
int mUsersMenuSelection = 0;
String mUsersInput = null;
boolean mUsersYesNoSelection = false;
boolean mUsersConfirm = false;
boolean mIncludeAdditionalInfo = false;
int mAdditionalInfo = 0;
int mEventValue = -1;
byte[] mAddedInfo = null;
public CatResponseMessage(CatCmdMessage cmdMsg) {
mCmdDet = cmdMsg.mCmdDet;
}
public void setResultCode(ResultCode resCode) {
mResCode = resCode;
}
public void setMenuSelection(int selection) {
mUsersMenuSelection = selection;
}
public void setInput(String input) {
mUsersInput = input;
}
@UnsupportedAppUsage
public void setEventDownload(int event, byte[] addedInfo) {
this.mEventValue = event;
this.mAddedInfo = addedInfo;
}
public void setYesNo(boolean yesNo) {
mUsersYesNoSelection = yesNo;
}
public void setConfirmation(boolean confirm) {
mUsersConfirm = confirm;
}
public void setAdditionalInfo(int info) {
mIncludeAdditionalInfo = true;
mAdditionalInfo = info;
}
CommandDetails getCmdDetails() {
return mCmdDet;
}
}