package com.smartdevicelink.proxy.rpc; import java.util.Hashtable; import com.smartdevicelink.protocol.enums.FunctionID; import com.smartdevicelink.proxy.RPCResponse; /** * Generic Response is sent, when the name of a received msg cannot be * retrieved. Only used in case of an error. Currently, only resultCode * INVALID_DATA is used. *

Parameter List

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Param NameTypeDescription Req.NotesVersion Available
successBooleantrue, if successful; false, if failedSmartDeviceLink 1.0
resultCodeResultDefines the possible result codes returned by SDL to the application in a Response to a requested operationSmartDeviceLink 1.0
infoStringProvides additional human readable info regarding the result.Nmaxlength=1000SmartDeviceLink 1.0
* @since SmartDeviceLink 1.0 */ public class GenericResponse extends RPCResponse { public GenericResponse() { super(FunctionID.GENERIC_RESPONSE.toString()); } public GenericResponse(Hashtable hash) { super(hash); } }