summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/DeleteCommandResponse.java
blob: 34e8bf1b981be45f9d78020e73f19538b858c634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.smartdevicelink.proxy.rpc;

import java.util.Hashtable;

import com.smartdevicelink.proxy.RPCResponse;

/**
 * Delete Command Response is sent, when DeleteCommand has been called
 * 
 * @since SmartDeviceLink 1.0
 */
public class DeleteCommandResponse extends RPCResponse {

    public DeleteCommandResponse() {
        super("DeleteCommand");
    }
    public DeleteCommandResponse(Hashtable hash) {
        super(hash);
    }
}