summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/ShowConstantTBTResponse.java
blob: a9ddae411089bc72bd40fb3c2d7f54c27660dc63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.smartdevicelink.proxy.rpc;

import java.util.Hashtable;

import com.smartdevicelink.proxy.RPCResponse;

/**
 * Show Constant TBT Response is sent, when ShowConstantTBT has been called
 * 
 * @since SmartDeviceLink 2.0
 */
public class ShowConstantTBTResponse extends RPCResponse {

	/**
	 * Constructs a new ShowConstantTBTResponse object
	 */
    public ShowConstantTBTResponse() {
        super("ShowConstantTBT");
    }

	/**
	 * Constructs a new ShowConstantTBTResponse object indicated by the Hashtable
	 * parameter
	 * <p>
	 * 
	 * @param hash
	 *            The Hashtable to use
	 */
    public ShowConstantTBTResponse(Hashtable hash) {
        super(hash);
    }
}