All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartdevicelink.proxy.rpc.DeleteWindowResponse Maven / Gradle / Ivy

Go to download

The app library component of SDL is meant to run on the end user’s smart-device from within SDL enabled apps, as an embedded app, or connected to the cloud. App libraries allow the apps to connect to SDL enabled head-units and hardware through bluetooth, USB, and TCP for Android, and cloud and embedded apps can connect through web sockets, Java Beans, and other custom transports. Once the library establishes a connection between the smart device and head-unit through the preferred method of transport, the two components are able to communicate using the SDL defined protocol. The app integrating this library project is then able to expose its functionality to the head-unit through text, media, and other interactive elements.

There is a newer version: 5.7.0
Show newest version
package com.smartdevicelink.proxy.rpc;

import androidx.annotation.NonNull;

import com.smartdevicelink.protocol.enums.FunctionID;
import com.smartdevicelink.proxy.RPCResponse;
import com.smartdevicelink.proxy.rpc.enums.Result;

import java.util.Hashtable;

/**
 * This RPC is the response of the DeleteWindow RPC
 *
 * @see DeleteWindow
 * @since 6.0
 */
public class DeleteWindowResponse extends RPCResponse {

    /**
     * Constructs a new DeleteWindowResponse object
     */
    public DeleteWindowResponse() {
        super(FunctionID.DELETE_WINDOW.toString());
    }

    /**
     * 

Constructs a new DeleteWindowResponse object indicated by the Hashtable * parameter

* * @param hash The Hashtable to use */ public DeleteWindowResponse(Hashtable hash) { super(hash); } /** * Constructs a new DeleteWindowResponse object * * @param success whether the request is successfully processed * @param resultCode whether the request is successfully processed */ public DeleteWindowResponse(@NonNull Boolean success, @NonNull Result resultCode) { this(); setSuccess(success); setResultCode(resultCode); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy